Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Aspectj in weaving a jar file

When you right click on something, see RunAs context menu. within it select 'Run Configurations...'.

It will open a dialog. Select 'Java Application' on the left, then open the context menu (right click) and select 'New'. In the new launch configuration edit the 'Project' to be the one you want to run, and in the 'Main Class' box you can either press 'search' to find a main (which might not work) or type in the fully package qualified name of your type containing 'main'. This is basic eclipse stuff and nothing to do with AspectJ (other than the aspects can interfere with the code that searches for 'main').

If you don't have a main class in your launch configuration, eclipse won't know what to run.

Andy

On 14 October 2014 08:29, mufc_fan <rajeshkumarit8292@xxxxxxxxx> wrote:
can you share a link or any other on how to create a configuration
manually...also is it mandatory to mention the main class in the
configuration?



--
View this message in context: http://aspectj.2085585.n4.nabble.com/Aspectj-in-weaving-a-jar-file-tp4651584p4651607.html
Sent from the AspectJ - users mailing list archive at Nabble.com.
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top