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 ...

learn more… | top users | synonyms (1)

1
vote
2answers
30 views

Merging 2 jars into one avoiding duplicate classes

I have two netbeans project and i need to merge the 2 output jars in only one "big" jar. The problem is that these 2 project share a lot of classes and this is obviously a problem. I'm already using ...
0
votes
1answer
12 views

ant build script fails on window using command prompt

I downloaded latest version of ant and installed it using this guide I used the ant command to start build process and i got All features of the build script require Ant version 1.8.2. Please upgrade ...
0
votes
2answers
26 views

Ant not recognizing external command

BUILD FAILED C:\Users\SomeUser\Downloads\mule_test\build.xml:69: Problem: failed to create task or type cloudHubDeploy Cause: The name is undefined. Action: Check the spelling. Action: Check that any ...
0
votes
1answer
20 views

Ant Non Recursive Fileset

Here is my directory structure: module/ a/ foo.php b/ bar.php b/ c/ I would like to run a command for each directory under module/ but non recursively, so ...
0
votes
1answer
47 views

Can we run ant file kept inside jar file?

Is it possible to run an ant file kept inside any jar from another java program ? Ant build.xml file is kept inside masterjar.jar. I am trying it like : pro = Runtime.getRuntime().exec("ant ...
1
vote
1answer
33 views

Suppress Perforce Ant task output

Is there a way to suppress the (many) output of a Perforce Ant task? I've tried the globaloption but that seems to not work! <p4jsync files="//depot/${ProgramName}/@{Folder}@{Includes}" > ...
0
votes
1answer
34 views

How to make system search for .keystore file in project directory, by default it checks for .keystore file in C:\Users?

I am using ANT to build a war file for my project which uses applets. I have created a keystore file in the project directory, but on build up system checks for the .keystore file in C:\Users, how can ...
0
votes
1answer
44 views

Ant resource exists check

I have problem testing file existence with ant. I want to check if files exist in target test, and if not, I want download files in target download. But the download target will be executed always (if ...
0
votes
0answers
15 views

Android ant AIDL step always rebuilds

C:\work\AbraKadabra>ant clean Buildfile: C:\work\AbraKadabra\build.xml ... BUILD SUCCESSFUL Total time: 3 seconds ant release ... BUILD SUCCESSFUL Total time: 2 minutes 47 seconds If I do and ...
0
votes
2answers
24 views

add local jars to ivy build script

I am working on an existing application that uses ivy to manage dependencies, and the source comes with ivy.xml and ivysettings.xml files. I am trying to add my own jar to the build. What would be ...
0
votes
1answer
44 views

hsqldb inmemory ant target junit test

I have defined an Ant target containing in-memory HSQLDB: <target name="create.tables" depends="-prepare.test"> <property name="db.connection.url" value="jdbc:hsqldb:mem:adb"/> ...
0
votes
0answers
22 views

Maintaining beta and release branches in Android

Our app is currently in an open beta-phase and we are nearing the point where we are ready to switch to a stable release. It is freely available through the play store and we simply want to rename the ...
0
votes
1answer
23 views

Problems creating WAR file (Access is denied) (and the archive is probably corrupt but I could not delete it)

Here is the error I'm having trying to build something in Eclipse 3.8 on Windows 7 Pro: BUILD FAILED C:\path\to\build.xml:140: Problem creating war: C:\path\to\war\abc.war (Access is denied) (and the ...
0
votes
1answer
33 views

Include java project into android build

I've got such a problem I have to include external java project into my android build. The project structure is: Alpha - project with shared classes and libs. Beta - android project that uses ...
0
votes
2answers
52 views

How to create a jar file with an Ant script to launch the program

I've currently got an eclipse project with two main methods and was wondering if it's possible to create a jar file which runs an Apache Ant script when the jar file is executed. I've provided an Ant ...
0
votes
1answer
18 views

Running ant target and getting antlib not found error

I am running ant and having an issue with it picking up the jar file I need. [kyle@infosys salesforce-git]$ jar tf /usr/share/ant/lib/ant-salesforce.jar | grep antlib com/salesforce/antlib.xml ...
0
votes
2answers
41 views

Ant move, copy tasks failing on mapped drives in jenkins

I have an ant file which has move and copy tasks. The source and destination locations are on the mapped network drive R:\. When I run them on the command prompt the build is successful but when I ...
0
votes
0answers
14 views

Failed to run Mac dmg

I have created native bundle package for Mac OS X using JavaFX deployment using Ant. As stated at http://docs.oracle.com/javafx/2/deployment/self-contained-packaging.htm#BABBCIHF Only a subset ...
0
votes
0answers
16 views

How to make javadoc available outside the doc-folder?

So I'm quite new at this. I've created a small Android app (which is working fine) for a school project, and I'm required to hand in the documentation. I'm using Ant to generate the javadoc which ...
0
votes
0answers
56 views

How to launch JavaFX application on command prompt?

I have created a self-contained application using JavaFX deployment task i.e. <fx:deploy>. I run this application from command prompt and passes arguments. It supposed to run on command prompt ...
10
votes
2answers
84 views

What does “**” mean in ANT? [duplicate]

Often in ANT tasks, you will see "**" used similar to below: <copy todir="/something"> <fileset dir="/source"> <exclude name="**/*.sql"/> </fileset> </copy> ...
1
vote
1answer
46 views

liquibase as ant task, relative path to changelogs.xml not found

i use the 2.0.5 version of liquibase to test the db migrations. Currenlty if i define the changeLogFile attribute into updateDatabase task as follows and the "${changeLogFile}" is specified into ...
0
votes
2answers
22 views

Building android app via ant won't work from batch file?

I'm trying to build my android app via commandline (batch file to be specific). I'm working on a phonegap/cordova app and I find it to be a bit of an overkill to use Eclipse only for compiling. If I ...
1
vote
2answers
35 views

Need an ANT task to include a set of jar files in the final jar's /lib dir

My project folder has a bunch of dependent jars in: /lib/someapi-1.1.1/main.jar /lib/someotherapi-2.2.2/api-2.2.2.jar /lib/... I build a JAR file and my application requires that the dependent jars ...
0
votes
0answers
26 views

is it possible to skip junit tests in ant build script?

I downloaded a large project that uses ant to build and it runs an extensive number of junit tests each time after compilation. Is there a way to by pass all those tests without changing every ...
0
votes
2answers
39 views

Ant not loading salesforce task definitions?

The Question I'm trying to use the Force.com Migration Tool (a custom ant library) on a linux box and can't for the life of me figure out how to get ant to see that library. What am I doing wrong? ...
-2
votes
1answer
25 views

Unable to find ant program

I am an experienced (but retired) Windows software developer, with more years experience than I care to admit, developing in C++, C#, VB and Java. I therefore decided to have a crack at Android ...
0
votes
1answer
37 views

NotImplementedException is internal proprietary API

I became the following warning when i try to build my project with ant. My build.xml ist a auto-generated from eclipse: warning: NotImplementedException is internal proprietary API and may be removed ...
0
votes
1answer
11 views

Spring-Tool-Suite (STS) cannot find ivy.jar while it is installed in ~/.ant/lib, and command line build succeed

I cloned a new repo which has a build.xml, which begins with <?xml version="1.0"?> <project name="mbark" basedir=".." xmlns:ivy="antlib:org.apache.ivy.ant"> But this line when I run in ...
0
votes
1answer
26 views

ANT to launch Java App with JNI library

I have the following ant target to run my Java application with JNI call. I was able to run the application via my run.sh file (in Linux). I always get java.lang.UnsatisfiedLinkError on ant. My ...
0
votes
0answers
34 views

PHP Code Generation and Apache Ant

I'm not sure if what I want to do is possible or the way I'm thinking of doing it is the best way, so please let me know if I'm missing something important. Here's what I want to do: In my PHP ...
0
votes
3answers
46 views

How to add any number to a property from a property file

I have a property base.number=100 in a property file. I want to create values 102, 103, 105, etc, depending on the value to be added. How can I add the numbers to the property and get the added ...
0
votes
1answer
29 views

Ant xmlproperty task. What happens when there is more than one tag with the same name?

I am trying to follow a large ant buildfile that I have been given, and I am having trouble understanding the functionality of xmlproperty in this case. Consider this xml file, example.xml. ...
0
votes
1answer
38 views

How to kill child processes spawned from jenkins after a build?

While I'm building my project using Jenkins, I need to start a nodejs server process to host some files, if I were to start this process like the following, the build would hang infinitely <target ...
0
votes
1answer
26 views

How to reference .jar from other project with ant?

I have project A. A needs to refernce the android support library which I have in project B. I would think it should be as easy as adding a class path entry such as: <classpathentry kind="lib" ...
0
votes
1answer
37 views

Ant Regex Replace pattern with contents of file

I'm trying to figure out how to replace matching text in my files with contents of file. Actually I want to inline javascript sources into HTML. But loadfile doesn't work in replaceregexp. ...
0
votes
2answers
21 views

Adding “cc” to mail task in ANT

This is regarding regarding "Sending e-mail" task in ANT. I want to add a "cc" in the Send-mail target. When I addded the "cc" e-mail, it is giving me an exception "mail doesn't support the nested ...
0
votes
1answer
28 views

Unable to create folder “classes” in WEB_INF folder in eclipse while building using ANT

I am using ANT to build a simple web application project named "HelloWebApp" in eclipse. But while using ANT to build the build.xml file I am getting the following error. Buildfile: ...
0
votes
0answers
17 views

Less Rhino is not working with multiple files

I am using less-rhino-1.3.3.js as tool for validate LESS files via apache ant. Following is my build.xml code block. <apply dir="${dir.publish.LESS}" executable="java" parallel="true" ...
0
votes
3answers
76 views

Noticeable projects in build tools ( ant , maven and gradle )?

I'm comparing ant, maven and gradle to suggest one tool to my project. I have found projects like hiberante, grails, groovy and spring uses gradle. But could not found any noticeable projects in ant ...
0
votes
0answers
20 views

ant zip: how to add prefix to all all files/dirs

<zip destfile="/tmp/abc.zip" > <fileset ...> .... </fileset> <zipfileset prefix="hello" > </zipfilest> </zip> I would like to add prefix ...
0
votes
2answers
34 views

Java Problems when Running Ant: noclassdef

Windows 7, Java jdk1.6.0_32, Ant 1.9 User & System variables: JAVA_HOME:C:\Program Files\Java\jdk1.6.0_32 PATH:C:\Program Files\Java\jdk1.6.0_32;c:\ant\bin; ANT_HOME:c:\ANT Run command prompt ...
0
votes
2answers
41 views

Gradle wait for ANT task to complete

I have a gradle task that calls ant.exec() to do svn export into a directory: /* * Get code from repository into the 'src' directory */ task getSource << { ant.exec(executable: ...
0
votes
1answer
31 views

GWT Sample Project not working after compiling with no changes made

I am following this tutorial for a Google Web Toolkit project: https://developers.google.com/web-toolkit/gettingstarted Everything seems to work except at the very end when I call ant build. ...
0
votes
2answers
51 views

Compile SASS to CSS using ANT build task

I am successfully able to compile my SASS into CSS by using the following script in my build.xml file <apply executable="sass.bat" dest="${css.dir}" verbose="true" force="true" ...
0
votes
1answer
33 views

Ant target 1.6 package not found

I am trying to down-compile a project for compatibility with Java 1.6 using Ant and I am receiving the error package javax.net.ssl does not exist. <path id="master-classpath"> <fileset ...
1
vote
2answers
18 views

Ant regex task to find unescaped percent signs

I need to locate unescaped percent signs in a file using an Ant task. Normally I would use a negative look-around, but this doesn't seem to be fully supported in Ant. Is this correct? If so, what's ...
0
votes
1answer
31 views

Ant as a dependency in a project that also uses ant for building/testing

In our Java project, we'd like to make use of a third-party jar that happens to have Apache Ant as one of its dependencies. However, we also use ant to build our project and run our test suite, and ...
1
vote
1answer
30 views

Ant move puts newline at the end of property

I have an Ant task in Eclipse to get version from file: <loadfile property="version" srcfile="version.txt"> <filterchain> <linecontainsregexp> <regexp ...
0
votes
1answer
50 views

The svn client 'svnkit' is not available

I have been using svnant 1.3.0 to create tags from branches in my SVN repository. Now I have upgraded from SVN 1.6 to 1.7 and there is no released svnant binary that supports it. But I have downloaded ...

1 2 3 4 5 149