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 ...
3
votes
2answers
954 views
How to Run a batch file in a Remote machine Using ANT?
I want to run a batch file in a remote machine using ANT. The purpose of this is it solves many tasks once it's done. Some of them are
we can resart a server(Jboss,weblogic,Tomcat,etc)
we can run ...
0
votes
5answers
1k views
Ant task for selenium script
I have written a test script. I am using Java, JUnit, and Selenium RC. I want run this script using an ant command.
How do I write an ant task and setup my build.xml file to run this new task?
1
vote
2answers
23 views
How do I run ant from within the _Events.groovy script using the AntBuilder?
I am trying to automate a build process that involves looping over a few directories and running "ant all" on all of them. All of them have a a simple build.xml.
I can do this via a shell script but ...
1
vote
1answer
42 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
17 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 ...
0
votes
1answer
30 views
How to add new file in .war file using ant build file? [closed]
I have checked in source code from clearcase and linked with eclipse. When i'm adding new file or image and doing ant build, these new files are not adding into .war file.
Can you please advise me.
1
vote
0answers
26 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
26 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 ...
0
votes
3answers
89 views
Howto protect an ANT task / target from accidental execution?
I have written an ANT script which deployes an application to my local development Java EE enviroment. I need the same function to deploy it to the productive enviroment.
I often only want to deploy ...
1
vote
1answer
24 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
...
1
vote
4answers
3k views
Problem while building with build.xml
When I run the ant file in verbose mode, I got an error like the one below. Does anyone have any ideas what is going wrong? I am new to this
antlib:org.apache.tools.ant] Could not load definitions ...
0
votes
1answer
25 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 ...
0
votes
0answers
14 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
12 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 ...
0
votes
1answer
17 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
votes
0answers
23 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 ...
1
vote
0answers
15 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 ...
1
vote
3answers
2k views
Ant: copying a directory from one windows system to another
How to copy a directory from a windows system to a remote windows system using ant
there is one scp command and FTP command, please provide me an example to perform this task using scp and ftp.
Also ...
0
votes
0answers
10 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
14 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;
...
0
votes
0answers
31 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
...
2
votes
2answers
1k views
Is there an ant task that can copy without losing permissions
I'm aware that I can <exec executable="cp" failonerror="true">, however, I'd really rather have a task that I can call from any OS that can use all (or at least most) of the attributes to copy, ...
1
vote
1answer
47 views
batch updating manifest.mf for existing jars using maven
I would like to add a custom key/value pair to the MANIFEST.MF of several existing jar files in my war project (those jars are not the project dependencies).
I already can pack/repack those jars ...
0
votes
0answers
14 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 ...
1
vote
0answers
65 views
+50
Can't build multiple Android dex files with Ant from external jars
I'm developing an Android app that requires multiple libraries (for Facebook, Google Maps v2 and Quickblox among others), resulting in a method amount overflow that goes over the 64K limit:
Unable to ...
0
votes
2answers
20 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 ...
1
vote
1answer
402 views
Can an Ant build script to reference the Eclipse plugin folder without full path details?
I could use the following:
<fileset dir="C:\Program Files\eclipse\plugins\myplugin">
<include name="extraStuff.jar" />
</fileset>
But that breaks the build file on someone ...
0
votes
2answers
171 views
AIR app signing without password
I have a build server that generates our signed packages for deployment. However, I would prefer not to embed our passwords for signing the package in our ant file. Is there a way to get around ...
0
votes
2answers
41 views
Android ant build: How to configure library order?
I am building an android application using one external somelibrary.jar file. In eclipse I can build it by
Configuring build path
Adding external somelibrary.jar
Change library order so that ...
1
vote
1answer
9 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 ...
-1
votes
1answer
70 views
Error: JAVA_HOME is not defined correctly [closed]
I am a very newbie to Unix environment and Unix scripting. I am trying to build the code on Unix but when I am trying to do I am getting this weird exception below. Can anyone please help me fixing ...
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
2answers
25 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 ...
1
vote
1answer
4k views
Ant build won't run in Eclipse
I have an Ant build.xml which no longer runs when launched in Eclipse.
I click on the External Tools Configuration, select the Ant Build I've been running, and click Run.
Nothing happens -- no console ...
1
vote
1answer
185 views
Ant MailLogger doesn't send email
I run ant like this in order to have an email with the log of the build : ant deployDB -logger org.apache.tools.ant.listener.MailLogger
Here or my properties :
MailLogger.mailhost = myhost
...
0
votes
0answers
23 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
17 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?
...
1
vote
1answer
81 views
option for ant junit task to dump console output on-the-fly
I have an issue when using the Ant junit task to launch my non-regression tests: the console output is only dumped when the test end. It causes some OOM when there are too many logs with respect to ...
0
votes
2answers
245 views
Ant task to compare two properties files
Does anyone know of an Ant task that would compare two (Java) properties files? I could not find any but I would like to be sure before I go off and implement it.
Input: two properties files
Output: ...
1
vote
1answer
54 views
Task cannot continue because ECJ is not installed — in Eclipse ant
I have some ant task which says on first run
Task cannot continue because ECJ is not installed.
ECJ was automatically installed. Please rerun your task.
When running with standalone Ant, it runs ...
0
votes
0answers
17 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 ...
0
votes
0answers
19 views
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/src/** (your Java sources go here)
project/bin/** ...
0
votes
2answers
55 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 ...
3
votes
3answers
71 views
Ant Build Failed
I am trying to build an Android Project using Apache Ant through Command Line but it is giving me Build Failed with the following error statements:
Java.io.IOException: Cannot run Program. ...
0
votes
1answer
20 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 ...
15
votes
12answers
20k views
Ant + Vista 64 : “Unable to locate tools.jar” (jre/jdk conflict?)
I'm trying to use ant in a vista 64 environment to build some docbook/xml files.
However, I can't resolve this error message. Anybody have suggestions?
C:\Users\Robert Admin>ant
Unable to locate ...
2
votes
3answers
113 views
How do I use Ant to build multiple Android APKs with the same code base, but with different resource files?
I am trying to build a branded Android app, that will have different resource files (mainly drawables) for different customers. The Java code in the apps will be the same, but the different apps will ...
1
vote
1answer
21 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
40 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:
...



