Re: Skip building jar file

2005-02-03 Thread Douglas Kramer
Thank you! That works, and speeds things up a lot. -Doug Conor MacNeill wrote: Remove the line where you delete it. Ant should then not bother rebuilding it if none of the files has changed. Douglas Kramer wrote: Novice question. My ant script works great, skipping compile if source files have n

Re: Skip building jar file

2005-02-03 Thread Conor MacNeill
Remove the line where you delete it. Ant should then not bother rebuilding it if none of the files has changed. Douglas Kramer wrote: Novice question. My ant script works great, skipping compile if source files have not changes, and skipping copying of resources if they have not changed. How wo

Re: Skip building jar file

2005-02-03 Thread Ninju Bohra
I guess one way to do it is you could use along with the selector and scan over all the files that would go in the jar. Set the date in the selector to the creation of the existing jar. Now if any files are selected you can then execute the jar task. Of course, there is question of how to

Skip building jar file

2005-02-03 Thread Douglas Kramer
Novice question. My ant script works great, skipping compile if source files have not changes, and skipping copying of resources if they have not changed. How would I prevent building the jar file if nothing has changed? -Doug -