Questions tagged [ant]

Apache Ant is a tool for automating build processes The main known usage of Ant is the build of Java applications. Ant supplies a number of built-in tasks allowing to compile, assemble, test and run Java applications.

9 questions
5
votes
2 answers

Default Ant target: help or jar?

What would you choose as the default Ant target? In the context of a small visual tool with a user interface, open source. I was thinking about jar because the project's distributable is the jar file. But someone prefers to have help as the default…