Apache Ant (formerly Jakarta Ant) is a declarative, XML-based build tool for Java projects. It provides a rich set of standard tasks for performing most common build operations, such as compilation with javac, building archives and running tests. Ant's functionality can be extended through custom ...
120
votes
12answers
51k views
NoClassDefFoundError - Eclipse and Android
I'm having a problem trying to run an Android app which, up until adding a second external library to its build path, was working fine. Since having added the scoreninja jar, I now get a ...
21
votes
5answers
10k views
Create cross platform Java SWT Application
I have written a Java GUI using SWT. I package the application using an ANT script (fragment below).
<jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain">
...
38
votes
11answers
28k views
Clean way to combine multiple jars? Preferably using Ant
I have runtime dependencies on some external jars that I would like to "rejar" into a single jar. These external dependencies are stored in an external_jars directory, and I'd like to be able to not ...
78
votes
4answers
82k views
Ant task to run an Ant target only if a file exists?
Is there an ANT Task that would execute a block only if a given file exists? I have the problem that I have a generic ant script that should do some special processing but only if a specific ...
90
votes
12answers
23k views
25
votes
5answers
13k views
good ivy tutorial for local repository?
Can anyone point me at a good tutorial for making & using a local repository with Ivy? (Please don't point me at the Ivy docs, the tutorials are rather confusing)
I need to make a local ...
50
votes
5answers
48k views
Ant: How to execute a command for each file in directory?
I want to execute a command from an Ant buildfile, for each file in a directory.
I am looking for a platform-independent solution.
How do I do this?
Sure, I could write a script in some scripting ...
2
votes
1answer
7k views
how to publish 3rdparty artifacts with ivy and nexus
I'm busily getting my feet wet with ivy. I have an existing nexus repository running on my local PC, and an existing ant build script.
Both work fine.
Part of the build scripts have some files to ...
22
votes
8answers
21k views
Can't build and run an android test project created using “ant create test-project” when tested project has jars in libs directory
I have a module that builds an app called MyApp. I have another that builds some testcases for that app, called MyAppTests. They both build their own APKs, and they both work fine from within my ...
19
votes
8answers
13k views
How to add external jar libraries to an android project from the command line
I'm trying to build an Android project that has some dependencies. The jar files are in the lib/ directory. I can build the project by adding those jar file to my classpath, but of course it Force ...
24
votes
3answers
41k views
Getting Ant <javac> to recognise a classpath
I have an Apache Ant build file with a <javac> command that requires four specific JARs to be on the build classpath. I've tried to do this:
<project basedir=".." default="build_to_jar" ...
0
votes
1answer
2k views
comparing databases and genrating sql script using liquibase
I'm comparing two databases using liquibase integrated with ant. But the output it is generating is like generic format. It is not giving sql statements. Please can any one tell me how compare two ...
54
votes
12answers
14k views
SASS implementation for Java?
I'm looking for SASS implementation in Java (could be used with JSP/JSF). For Python I've found CleverCSS, but there is nothing for Java. Anyone heard something about this sort of tool for generating ...
20
votes
5answers
8k views
Android signing with ANT
I'm trying to build an Android application on release mode for distribution via ANT. My problem is at the signing process. I've created a keystore and alias via Eclipse using the Export Android ...
6
votes
2answers
4k views
Ivy fails to resolve a dependancy, unable to find cause
While using ivy:retrieve, it fails to resolve the dependency that should be downloaded. The output looks like this:
Buildfile: C:\Users\Simon\workspace\apollo\build.xml
init:
resolve:
BUILD FAILED
...
24
votes
1answer
4k views
Javac: Treat warnings as errors
I have an Ant file that compiles my program. I want the javac task to fail if any warning was reported by the compiler. Any clue on how to do that?
5
votes
1answer
7k views
Run ant from Java
Is there a tutorial on how to run Ant from Java? I got some code from here: Setting JAVA_HOME when running Ant from Java
But haven't been able to make it work. I've been trying to find an example or ...
0
votes
1answer
431 views
Ant, download fileset from remote machine
As I've readen ant doesn't provide 'fileset' attribute when downloading files from remote machine via scp task. It works when sending files from local machine, but It doesn't work when starting in ...
33
votes
6answers
28k views
Replacing characters in Ant property
Is there a simple way of taking the value of a property and then copy it to another property with certain characters replaced?
Say propA=This is a value. I want to replace all the spaces in it into ...
4
votes
4answers
9k views
Repackage APK file to contain custom assets - what build tool to use?
Based on previous feedback, I am storing custom text fields in the assets directory of my app.
I will write the app, using default user details in an asset file, and the client would like to rebuild ...
4
votes
3answers
3k views
Make ant quiet without the -q flag?
I have an ant buildfile that is often run from vastly different environments. By default, I'm looking for the same behavior as using:
ant -q
However, since some team member's configurations vary, ...
3
votes
3answers
5k views
Is it possible to use a Dynamic xPath expression in a xslt style sheet?
I'd like to use the value of an xslt parameter in an xpath expression. Specifically, as part of a not() call in an <xsl:if expression.
<xsl:transform version="1.0" ...
2
votes
2answers
1k views
Ant - how to get all files' name in a specific folder
Here is my Ant script for generating jar package. I have bunch of jar packages for manifest Class-Path attribute, they are all in an specific folder.
I don't want to hard code it, how can I get them ...
201
votes
9answers
60k views
Why use Gradle instead of Ant or Maven? [closed]
What does another build tool targeted at Java really get me?
If you use Gradle over another tool, why?
(See also Why use Buildr instead of Ant or Maven)
58
votes
9answers
35k views
Differences between Ant and Maven
Could someone tell me the differences between Ant and Maven? I have never used either. I understand that they are used to automate the building of Java projects, but I do not know where to start from.
...
26
votes
4answers
18k views
Creating a bundle jar with ant
I'm using Ant to build some Java projects.
In some, I've got a lib/ directory, which contains external dependencies, in the form on JAR files.
During the build, I create a bundled jar, that contains ...
23
votes
3answers
7k views
ant to maven - multiple build targets
I have an ant build that is currently being converted to maven. However, the ant build has 2 build targets - one that builds the entire app, and one that builds a jar from some of those files (only a ...
37
votes
3answers
42k views
Any way to generate ant build.xml file automatically from Eclipse?
From Eclipse, I found I can easily export an Ant build file for my project. It provides references to 3rd party libraries and some base targets. I'm using it from my global build file. The only thing ...
18
votes
5answers
11k views
How can I specify location of debug keystore for Android ant debug builds?
Is it possible to specify the location of a self created debug keystore when creating debug .apk's (<project-name>-debug.apk) with ant debug? I only see the possibility to specify the location ...
11
votes
4answers
4k views
How do I reference external jar files in a common directory (not libs) to build android project using ant?
I would like to build several android projects that reference the same jar files using ant. I do not want to copy the jar file to each libs directory in the project (due to how the source control tree ...
4
votes
4answers
906 views
Is it possible to call Ant or NSIS scripts from Java code?
Is it possible to call Ant or NSIS scripts programmatically from Java code at runtime? If so, how?
17
votes
5answers
16k views
How to pull out a substring in Ant
Is there a way to pull a substring from an Ant property and place that substring into it's own property?
1
vote
2answers
2k views
Conditional Task on exec failure in Ant
I have some unit tests running through Ant, and I'd like to be able to run some cleanup code if the unit tests fail. I was looking for some sort of "finally" block, but I had no luck finding one. I've ...
3
votes
3answers
21k views
ant - not recognized as an internal
I have installed ant(apache-ant-1.7.0). But when i run the ant command in dos command prompt, it says
‘ant’ is not recognized as an internal or external command, operable program or batch file.
...
0
votes
2answers
362 views
Ant script to choose between multiple version of classpaths
I am new to Ant scripts.
below is description of requirement
in my workspace, there are various projects and I have to have my project work on RAD and eclipse IDE as well as Websphere , tomcat and ...
0
votes
1answer
391 views
I need help figuring out why Ant is giving me this error messages(setting up Java Pet Store)?
I have no idea where ContainerBaCommand is coming from, but here's my error:
I first had to add javax.jar (which has the servlet ) class into the C:\JEE6SDKglassfish3\glassfish\lib\endorsed ...
0
votes
3answers
3k views
Cannot find Main Class in File Compiled With Ant
I compile and run my program in Eclipse and everything works fine, but when I package it with Ant and run it, I get this error:
Exception in thread "main" java.lang.NoClassDefFoundError: ...
22
votes
5answers
25k views
Use Ant for running program with command line arguments
My program getting command line arguments. How can I pass it when I use Ant?
7
votes
4answers
9k views
Can someone give me a working example of a build.xml for an EAR that deploys in WebSphere 6
I'm trying to convince my providers to use ANT instead of Rational Application Development so anyone can recompile, recheck, redeploy the solution anyplace, anytime, anyhow. :P
I started a ...
18
votes
3answers
23k views
How to debug Java code when using ANT script in Eclipse
I have a java class and I need to debug it (put breakpoints and continue using F6). I am using ANT script to init, build, deploy and run the code. I am using:
<javac srcdir="${src.dir}" ...
14
votes
1answer
10k views
Custom JUnit Report?
I am using the ant tasks 'junit' and 'junitreport' to run my JUnit Tests and generate a report at the end (=> "Unit Test Results").
Is it there some easy way to extend this output somehow to get more ...
10
votes
4answers
13k views
How to build an android app with external libraries using ant?
I have an existing project that builds fine using my IDE. I'd like to use the "android update" command to generate an ant buildfile for this project.
The buildfile is generated fine, but the build ...
5
votes
3answers
3k views
Has anyone used or written an Ant task to compile (Rhino) JavaScript to Java bytecode?
I'd like to use the Rhino JavaScript compiler to compile some JavaScript to .class bytecode files for use in a project. It seems like this should already exist, since there are groovyc, netrexxc, and ...
9
votes
1answer
4k views
Multiple antrun tasks in maven
How would you execute ant tasks at different phases in a maven build cycle?
19
votes
5answers
24k views
Using ant to detect os and set property
I want to set a property in an ant task differently by os type.
The property is a directory, in windows i want it to be "c:\flag" in unix/linux "/opt/flag".
My current script only works when i run ...
6
votes
4answers
8k views
Want an eclipse java project to run ant build files automatically
I have an Eclipse Java project, not a plugin project. And the project has some external dependencies that I handle in two separate ant files. Everything works fine, but I want to force Eclipse to run ...
5
votes
6answers
7k views
How to execute XSLT 2.0 with ant?
I'm trying to run an XSLT transformation from an ant file.
I'm using a XSLT 2.0 stylesheet with a saxon 9 parser (supporting XSLT 2.0).
The problem is that it seems that ant is always calling an ...
13
votes
6answers
28k views
Why is Ant giving me a Unsupported major.minor version error
I'm running this target in Ant.
<target name="compile" depends="init"
description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
<javac ...
8
votes
3answers
18k views
Running ant build gives “package org.junit does not exist”
When I use a Java IDE to build projects (e.g. NetBeans) that have JUnit tests, they compile fine, but when I try to use ant outside of the IDE to run the build script, I get the error "package ...
7
votes
3answers
5k views
where do you put ivysettings.xml?
I'm trying to learn how to use ivy and would like to setup a local repository of the .jar files I've downloaded.
Where do you put the ivysettings.xml file? Does it go in the ant library directory?