Tagged Questions

8
votes
3answers
216 views

Which build tool to teach?

While similiar questions have been asked, this one's focused on which is best/easiest to teach. I'm giving a weekly tutorial at my university focusing on data structures and algorithms. Fromn time to ...
8
votes
6answers
1k views

Replacing build.xml with Build.java - using Java and the Ant libraries as a build system

I've grown disillusioned with Groovy based alternatives to Ant. AntBuilder doesn't work from within Eclipse, the Groovy plugin for Eclipse is disappointing, and Gradle just isn't ready yet. The Ant ...
2
votes
4answers
2k views

How can include multiple jars in the classpath using ant?

I have a bunch of .java files in a "src" folder that depend on three jars in a "lib" folder. I have the following build.xml file: <?xml version="1.0"?> <project name="MyProj" basedir="."> ...
1
vote
7answers
49 views

Java Build tool flexible enough to do conditional checks

I currently use Ant to build Java software. However, all development that I have done so far was not very complex. So, ant was sufficient for me. Recently, I have started working on a bit complex ...
1
vote
5answers
247 views

General purpose build tool with good Java support?

I really need an easy to use build tool which supports multiple languages with strong Java support. I have tried Scons but found the Java support lacking. Is there anything else out there? I'm not ...