ant
hi,
I have ant buid for my project.Can that be standardized.Now only I can run the buid to create ejb jar and ear files.
Thanks.
hi,
I have ant buid for my project.Can that be standardized.Now only I can run the buid to create ejb jar and ear files.
Thanks.
Hi,
Are you asking if you can use ant to build more than jar's and ear's? if that's your question the answer is Yes :-)
Ant is a super tool because using the right "tags" you can (among many other things):
- Deploy applications
- Compile javadocs
- Execute external applications
- Copy, move, delete, rename... files
- Expand and pack zip files (and other formats)
- Create war files (jar equivalent for web)
- Send emails. ftp, telnet
... and a lot more
I recommend you to take a look to this manual, especially the Ant Tasks section: http://ant.apache.org/manual/index.html
Best