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)

0
votes
1answer
37 views

antcall in foreach is not executing loop

I want to build couple of projects based on no of .composites by using ant scripts. i added all the taskref tags,lib path every thing in my build.xml file. i wrote the following piece of code for the ...
0
votes
0answers
18 views

Checkstyle Issues in Build

I am having trouble with adding checkstyle to my build file. I have been attempting to follow the tutorial at http://checkstyle.sourceforge.net/anttask.html as well as look at examples of code that ...
0
votes
0answers
13 views

Report JUnit tests results from PhantomJS to Maven's Surefire plugin

Right now I'm calling an Ant buildall.xml inside my pom.xml (maven-antrun-plugin, test phase): pom.xml <ant antfile="src/test/js/build.xml" target="init" useNativeBasedir="true"/> That ...
-3
votes
0answers
26 views

Error from Ant target

How to resolve this error: BUILD FAILED /home/foralobo/Scrivania/WORKDIR/build.xml:62: java.lang.NoClassDefFoundError: freemarker/template/TemplateException It comes from an ANT target that is ...
0
votes
1answer
22 views

Why does Ant recognize some env vars but not others

I have 2 env vars defined: myuser@mymachine:~$ echo $ANT_HOME /home/myuser/apache/ant/1.8.4/apache-ant-1.8.4 myuser@mymachine:~$ echo $ANT_IVY_HOME /home/myuser/apache/ivy/apache-ivy-2.3.0-rc2 I ...
3
votes
0answers
65 views

zend framework 2 + phpunit + multiple modules + continuous integration

Thanks in advance for any comments. I have just started to switch from Zend Framework 1 to ZF2 and after running through the quick start and several other tutorials I noticed that there is a short ...
-1
votes
1answer
32 views

Cannot find package org.junit when compiling java file in command prompt

Whenever I run my java file in command prompt, I keep getting errors saying: error: package org.junit does not exist import static org.junit.Assert.*; This also gives errors on symbols like ...
2
votes
2answers
131 views

Doing an Ant Build on Android Studio

Does Android Studio support Ant builds? I want to run a before-compilation Ant target. Android Studio is new, so it seems possible it's not supported in favor of Gradle.
0
votes
1answer
57 views

“No information about coverage per test.” from Sonar with Jacoco Ant build

I'm using Ant, Jacoco and Sonar. When I run my build Sonar tells me that "No information about coverage per test." and the Sonar dashboard has my coverage results, but I cannot drill down into them to ...
0
votes
0answers
22 views

Ant Build Script for Dynamic Web Project with Deployment Assembly to other project

I have a Dynamic Web Project (in this case it is a Web Services). This project have a lot of customer libraries (Spring, Hibernate, etc). Also, It have a second project with the "core code" linked ...
-1
votes
0answers
24 views

What ant command should I use when changing a spring message properties file

We have messages.properties file which contains labels . Something like label.industry=Industry label.representative=Representative label.sector=Sector label.issuerSize=Issuer Size From a jsp page ...
0
votes
1answer
38 views

Ant exec task and check using some ksh script

I'm facing a problem using Ant I'd like to check for the end of a long process, without using a nasty <sleep> command. In my Ant target, I'm launching <exec executable="my long process" ...
1
vote
1answer
20 views

How do I manage multi-projects dependency (Directed acyclic path) with IBM RAD ant?

I am working on an ant script to build java prjects developed with IBM RAD 7.5. The an script is calling IBM RAD ant extenstion API. I am using Task to load the project set file(*.psf) into the ...
0
votes
1answer
40 views

java.io.IOException: Cannot run program “ant”

I'm running a Job in Hudson. I build this job from a Hudson Master Server but the job is built in a Hudson Linux Node. This is the result: Started by user builder Building remotely on Linux-Node ...
0
votes
0answers
23 views

Using Testsuite in Phpunit Causing Error With Lots of Tests

I am using Symfony2 and there are some controllers to test. I am currently working on running all test files with single command. There are nearly 180 test such as; ...
1
vote
1answer
26 views

ant-contrib installation failure on linux

I would like to use 'ant-contrib', but I could not use it. I tried to use 3 way, without success. Apache Ant(TM) version 1.8.2 echo $ANT_HOME /usr/share/ant ...
0
votes
0answers
20 views

Ant - Check SCP Remote File Exists

I have a remote location which an Ant SCP task copies files to. I would also like a separate target in my build that checks if a file exists in this remote location. However I cannot see a way to ...
0
votes
0answers
18 views

Jenkins Ant Skript Variables

I am using Jenkins to start an ant script. Some variables i define using the EnvInject Plugin. I set them in the Properties Content field of the EnvInject Plugin and pass them afterwards to the ant ...
0
votes
0answers
11 views

Updating .res file using ant build script

I have a C++ dll project which keeps its version info in .res file. Is there a way to update this file at build time? we are using ANT as a build tool in this case. Intention is to update the version ...
0
votes
1answer
30 views

Build netbeans project from command line is a little different

I would like to build my project from the command line and make a hash of the output. I used this script which seemed to work: set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_09 set PATH=C:\Program ...
1
vote
2answers
29 views

How to use YUI Compressor in Ant build script for javascript and css

After a couple of days searching for how to use the YUI Compressor in an Ant build script I have finally got it working. Many old examples (<2010) exist for creating an Ant task and using that ...
0
votes
2answers
27 views

Packaging a file into a jar at a specific directory

Pardon me for asking a simple qustion. I am new to ant and I am trying to build a jar file. I have a file jaxb.index inside the package structure com/mycom/mg/adapter I am trying to ...
0
votes
1answer
12 views

How do you specify an alternative folder to the asset folder at build time

I'm in the process of setting up a build system for android, ios, and windows platform that shares the same code. For the android piece of the build, I want to have this shared code in the assets ...
0
votes
0answers
45 views

Create .apk file using build.xml

I try to create my .apk file using the build.xml file that I've created using eclipse. I want to get this from the Command Line and without use "ant debug" or "ant release" because I have not jdk ...
1
vote
1answer
22 views

What is Junit trying to tell me when it throws a “NoTestsRemainException”

I'm trying to run tests of the Apache POI project, but get the following exception. I saw it already a few times before, but every time I am completely lost about what JUnit is trying to tell me? ...
0
votes
0answers
27 views

JSP compilation fails, ant failonerror also fails

To preface the problem, I have read the responses regarding "OutOfMemoryError: GC overhead limit exceeded" and other useful responses, so the focus of the question is not on the OutOfMemory error, but ...
1
vote
2answers
64 views

Create file that keeps time and revision number of my project when I compile

Currently the file is only keeping the latest revision. I want to use a different file where the history is kept. Each time ANT is used, I want it to append the time and revision number on that file. ...
5
votes
1answer
84 views
+100

Basedir issue in Ant code

I am working on some project using Apache Ant and my project layout is as follows: project/build.xml project/properties/build.properties project/tool/antcontrib.jar Here, when i run ant command it ...
0
votes
1answer
34 views

Netbeans 7.3 Clean Install: Classpath to J2ME Ant extension library (libs.j2me_ant_ext.classpath property) is not set

First of all I'd like to start by saying that I'm actually a .Net programmer, and it so happens that I need to develop a J2ME app again today. I've have had innumerable problems developing J2ME apps ...
0
votes
0answers
28 views

Svnant svn attributes “not supported” message

I have a project checked into svn (1.6) and am using svnant 1.3.1 (Subclipse) with svnkit 1.7.9 settings pointing at a directory with these libs in the path. On my own laptop, Window 7 Home Premium 64 ...
-1
votes
1answer
24 views

About use ant in android-test-project [closed]

These days,I try to use ant to build my android-test-project,but when I use "ant debug" in commendline ,there tell me BUILD FAILED : ANDROID_HOME\tools\ant\build.xml:588:dubant task calling a target ...
0
votes
1answer
25 views

Dismal svnant performance

I am facing a problem with svnant. <svnModified /> takes over 3 minutes to complete on my working copy (svn metadata version 1.7: using the latest svnant from HEAD). If I try to check for ...
0
votes
0answers
16 views

RSA 7.0 headless ant build fail

RSA 7.0 fixpack 10 The ant build xml could be run well in GUI, but when I try headless mode, I got some error messages as below [projectGetErrors] 1. ERROR in \My_Project [projectGetErrors] (at line ...
0
votes
0answers
26 views

weblogic deployment automation -nostage

I have to automate the weblogic deployment, and as per this doc. http://docs.oracle.com/cd/E15523_01/web.1111/e13702/deploy.htm#DEPGD234 we can use weblogic.Deployer, and the syntex for that would be ...
0
votes
0answers
37 views

ANT build: [signjar] enter passphrase for keystore:

I have created a project in eclipse and while trying to build the project from command prompt the following is asked: [signjar] jarsigner error: java.lang.RuntimeException: keystore load: ...
0
votes
1answer
23 views

Check if executable command exists using ant

Is it possible to check if a command exists as part of an ant task. For example, I want to ensure the "yasm" command is present as part of the ant task. Is this possible? If so, can you provide an ...
1
vote
1answer
28 views

how to precompile .jspf files with jasper2 in ant

.jspf files are "Java server fragments" -- jsp that is intended only for inclusion () in other .jsp files. Precompiling all .jsp files is very handy because it exposes syntax errors, missing imports, ...
0
votes
0answers
44 views

Precompiling JSPs in Jenkins CI

Has anyone called an ant script in Jenkins CI that pre-compiles JSPs using JspC? I'm trying to migrate my project to use Jenkins and when I call my ant script i keep getting the following exception: ...
0
votes
1answer
20 views

Ant Build Issue: NoClassDefFoundError

I'm new to Ant and this application. I'm not able to decode this error message. C:\Eclipse\sources_int\external-sources>ant netstudy-generate-client Buildfile: ...
1
vote
0answers
18 views

Cygwin causing errors in Aptana when Ant builds project with HTML parsed as PHP

I have Aptana Studio 3, build: 3.4.0.201304151603 installed on Windows 7 (Service Pack 1). I have configured it to associate *.html files with the PHP Source Editor by default to add code completion ...
0
votes
2answers
31 views

Deploy my javafx 2 application on eclipse-SDK-4.2.1-win32-efx-0.8.0

I install eclipse-SDK-4.2.1-win32-efx-0.8.0 for javafx developpement. I make soe test and I want to deploy my applicattion. I firstly export it into ant and got this ant file in my projet <?xml ...
0
votes
0answers
17 views

How to access main build.xml variables/properties from each sub build.xml in ANT

My ant script has problem. I have a main build.xml is following to call another sub app's build file called deliver.xml: My problem is in deliver.xml, it cannot access the variables such as ...
0
votes
0answers
18 views

ant killing target, possible timeout

I have problem with Ant@Cruise Control killing my target without notice. Cruise Control config: <schedule interval="1800"> <ant buildfile="build_ppr_offline.xml" ...
0
votes
1answer
20 views

how do i run command-line ant with stuff in the classpath?

In eclipse, I can tell my external ant tool to run with stuff in the classpath. If i want to run ant from the command line, how would i do that? For argument's sake, the classpath i want to add is ...
0
votes
2answers
89 views

Where does Ant set its 'java.home' (and is it wrong) and is it supposed to append '/jre'?

Okay, I'm using Ant version 1.7.1 (default install) on CentOS 6.3: [theuser@dev-ingyhere ~]$ ant -version Apache Ant version 1.7.1 compiled on August 24 2010 [theuser@dev-ingyhere ~]$ cat ...
0
votes
0answers
19 views

Ant Jar exports R.java.d file

I'm building an SDK library for Android apps so I'm using an Android project however only creating and working in Java files. I'm not using the R.java file and I could care less about it. To build ...
0
votes
1answer
39 views

Ivy used to retrieve guava, now it does not

Related question: Ivy cached a dependency file, but not copy to my lib My situation is nearly identical, except that this has been working for quite a while until recently. Ivy retrieves other jars: ...
0
votes
1answer
32 views

Use ant <apply> to run alfresco-mmt on a set of modules

At the moment, our customization for Alfresco 3.4.x includes six AMP files, the removal of the internal log4j jar, the patching of a couple of jars to correct a bug in CIFS implementation, and a dozen ...
0
votes
0answers
29 views

Flash Builder 4.7 Ant Build Issues

I hope some one out there can help. I have a large project that uses Ant for release builds, that must be "Run in the same JRE as workspace" This has always been fine in fb4.5 and 4.6 but in 4.7 ...
0
votes
1answer
21 views

JavaFX and Ant - Outside any IDE

So I am trying out JavaFX and I get the following error when building using ant without an IDE: [javac] warning: Supported source version 'RELEASE_6' from annotation processor ...

1 2 3 4 5 150