Skip to main content

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.

0 votes
0 answers
1k views

I have been asked to do the following: Take a project within a repo (repo has multiple projects inside) Build ant build script that will build two separate tomcat webapp war files. They are two web ...
InformedA's user avatar
  • 3,041
5 votes
5 answers
2k views

My team currently use an Ant script to execute various Java programs. Note that I am not asking about managing the build/deployment cycle for which we are already using Maven (quite happily). For ...
amaidment's user avatar
  • 428
3 votes
2 answers
946 views

In our development environment We have more and more build scripts for ant to perform the build tasks for several different build jobs. These build scripts sometimes become large and do a lot of ...
pablaasmo's user avatar
  • 141
6 votes
2 answers
1k views

I am learning Hibernate (OR Mapping). I am using Maven for project management. However, I am currently reading a Hibernate book by O'Reilly, and they use ANT for their example. So my question is are ...
James116's user avatar
  • 163
5 votes
2 answers
291 views

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....
Nicolas Raoul's user avatar
24 votes
9 answers
4k views

In my years of programming Java and more recently Scala, I've never used Ant, Maven, Gradle or any of those build tools for Java. Everywhere I've worked there was a build manager who took care of all ...
Gigatron's user avatar
  • 361
1 vote
3 answers
1k views

I am on my final year on CS, working on my first significant project, so I thought its about time to learn and use build tools. I have read about Maven mainly and heard about Ant. I would like to ...
latusaki's user avatar
  • 437
14 votes
5 answers
3k views

We have been slowly replacing batch command files (windows .bat) which were simply jarring up the classes compiled in the developers IDE, with more comprehensive Ant builds (i.e. get from CVS, clean ...
Sam Goldberg's user avatar
  • 1,004
2 votes
2 answers
535 views

I just started working at a company that has a very large ant build file that imports lots of other large/small ant files. Needless to say it's giving me a headache trying to figure out what is going ...
kfox's user avatar
  • 131