Recompile java files in JAR
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2010 05:12 PM
I modified a few java files in one of the JAR files and from building can tell it's not recompiling all the java files. Do you have to do this manually or is there a way in Eclipse to do this?
Thanks.
JR
Thanks.
JR
Labels:
- Labels:
-
Archive
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2010 06:12 PM
You only need to compile those classes you have changed.
However would normally use the ant build system to compile and jar a library. For good measure, if you are worried about only partial updates, you may want to 'clean' first.
The eclipse builder tends to just put classes onto a classpath. And does not do the extra packaging steps, so if you are after a jar then its simplest to just use ant. Of course there's nothing to stop you from building a Jar in eclipse, its just that that's not the way that alfresco's out of the box eclipse projects are set up.
However would normally use the ant build system to compile and jar a library. For good measure, if you are worried about only partial updates, you may want to 'clean' first.
The eclipse builder tends to just put classes onto a classpath. And does not do the extra packaging steps, so if you are after a jar then its simplest to just use ant. Of course there's nothing to stop you from building a Jar in eclipse, its just that that's not the way that alfresco's out of the box eclipse projects are set up.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2010 11:16 AM
You only need to compile those classes you have changed.
However would normally use the ant build system to compile and jar a library. For good measure, if you are worried about only partial updates, you may want to 'clean' first.
The eclipse builder tends to just put classes onto a classpath. And does not do the extra packaging steps, so if you are after a jar then its simplest to just use ant. Of course there's nothing to stop you from building a Jar in eclipse, its just that that's not the way that alfresco's out of the box eclipse projects are set up.
Can you take a look at my last post in the below thread related to this?
http://forums.alfresco.com/en/viewtopic.php?f=48&t=24207
