Search Results

0
votes

Ant Junit tests are running much slower via ant than via IDE - what to look at?

For the record, I found my problem. We have been using a code obfuscator for this project, and the string encryption portion of that obfuscator was set to "maximum". This slowed down any operatio …
1
vote

How to set the working directory for a <junit> task to something other than the basedir?

Have you tried: <junit fork="true" printsummary="yes" dir="workingdir"> …
1
vote

Web app for running ant task

You could give Anthill a shot. They have an open source version. This will periodically check your sou …
0
votes

Files not extracted from .jar file when run

If you wrap your application up using One-JAR, you can specify an attribute in the Manifest file to extract files that you want (See the …
0
votes

How can I provide a custom log4j.xml for different ant tasks?

If I set ANT_OPTS=-Dlog4j.configuration=Build/log4j.xml before running ant, the taskdefs correctly load the desired log4j.xml. Have you tried setting this prope …
0
votes

How to reference an external library in an Ant build and general Ant help?

From what I can tell, you need to add the classpath elements to the manifest. Should look something like this: <manifest file="${dist}/MANIFEST.MF"> <attribute name="B …