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 ...
0
votes
0answers
5 views
sonar:sonar doesn't support the “key” attribute (urgently need help)
I install the sonar server 3.5.1, and apache ant 1.9.0, and download the plugin sonar-ant-task-2.1.jar under the directory apache-ant-1.9.0/lib/.
when I run the ant sonar in the client, I meet the ...
0
votes
0answers
17 views
Unknown argument: -cp ANT1.9.1
My OS is Win7,I download ant-1.9.1 ant unzip to d:\
after I set ANT_HOME ,run in CMD I GOT below error:
C:\Users\hp>ant
Unknown argument: -cp
ant [options] [target [target2 [target3] ...
Options:
...
0
votes
1answer
24 views
Creating a Java reporting project — would like to use JUnit and Ant but not sure how
I'm interested in generating reports for a certain group of (non-software) engineers in my company using JUnit. Unlike typical JUnit testing where you are ensuring objects, methods, etc are bug free, ...
0
votes
1answer
16 views
Using ant, check or compare all items listed in a file appear in another file or list
I was wondering if you could help. I am new to ant scripting.
I want to be able to compare two lists. File1.txt will contain a list of a lot of parameters and file2.txt will only contain a section ...
0
votes
0answers
24 views
Build apk in c# application?
So im making a C# application which I want to be like a small configuration GUI where the user can input his own parameters and select some features, and according to those a xml file will be made and ...
0
votes
1answer
11 views
ant: ftp task failing due to NoClassDefFoundError
I have been following some example source code
but I am getting an error upon executing the ftp task.
Here is my build.xml file:
?xml version="1.0"?>
<project name="HelloWorld" ...
0
votes
1answer
20 views
Using “if” condition inside junit element in apache ant script
I have tried to use "if-then-else" condition inside junit element in a build.xml file and I am getting the following error while trying to build.
junit doesn't support the nested "if" element
Is ...
0
votes
1answer
15 views
Could not load a dependent class com/jcraft/jsch/Logger
While trying to execute target in Eclipse's ant, containing scp task, I am getting an error
BUILD FAILED
...
-1
votes
0answers
10 views
Ant throws Unable to obtain resource from .. java.util.zip.ZipException: error in opening zip file
Here is my snippet :
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar" excludes="**/*.py">
</fileset>
</path>
I need to exclude a python file from my ...
0
votes
1answer
8 views
How to Pass Username and Password asked in exec task of ant after running startManagedWebLogic.cmd during runtime?
<target name="startmanaged" description="Start Managed Server">
<if>
<equals arg1="${server-host}" arg2="localhost" />
<then>
<echo ...
0
votes
1answer
12 views
ANT copy task: Filesystem diff to recognize file deletions
In my project setting I have for example the following file system setting:
Directory A
file1
Directory B
file1
file2
I have a copy task in my ant script which copies the whole content of Dir A ...
0
votes
0answers
17 views
TestNG Selenium Test fails in Ant through command prompt
I am using Selenium testNG in eclipse to run my test cases.The testNg.xml file executes the test correctly.
But when I try to run in command prompt through ant the build is success but the test ...
0
votes
0answers
12 views
Junit cleanup in separate JVM
Is it possible to run maven or ant in such a way that the @After and @Before tagged methods in a Junit test are run in a separate JVM? Admittedly, since these normally run once per test case,whose ...
1
vote
1answer
29 views
How do I find out the duration of each task within a Hudson job?
I'm interested in finding out how long each step within a job is taking.
Example: one of my jobs performs csv checkout, run ant build, publish javadocs, archives artifacts, run unit tests, etc. Is ...
0
votes
0answers
17 views
Eclipse cannot be resolved to a variable - debug ANT build
having a little trouble getting my ANT build to allow debugging and I can't see why as this is something I've never had before!
Basically I have set my build.xml as below
<javac srcdir="@{src}"
...
0
votes
0answers
8 views
ANT - changing variable names when compressing with YUI
I've created a build file with ANT and it (along with YUI COMPRESSOR) compresses the JS files in my app. It's working great. My question is:
1) How can I further compress the JS files by changing ...
0
votes
2answers
18 views
Ant - Delete all folders with name?
In Ant, here's what I use to delete a folder with my build directory called "uncompressed":
<delete dir="${BUILD_DIR}/uncompressed"/>
...but how would I recursively delete all folders that ...
0
votes
1answer
16 views
ANT script. Replacing dynamic values from one file with values from another
I need some help with replacing dynamic values. I am new to ant scripting and require some assistance.
I currently have one file on a server which will hold the properties that are specific for that ...
0
votes
0answers
30 views
Facebook.jar in referred libraries list, how to include it by buid file? [closed]
I'm trying to use an ant build file to build my Android project. since I have integrated facebook connectivity in the app I think I have to include facebook.jar files. my facebook.jar file in in the ...
0
votes
1answer
21 views
How to read a property from an ant build file to a gradle build script?
I am looking for a possibly clean and concise way of extracting a property from ant's build.xml file.
I know I could use ant.importBuild 'build.xml' but this would import all the targets, possibly ...
0
votes
1answer
27 views
Groovy scripts in Ant: Use script task or groovy task?
If you want to run a Groovy script in Ant, you can either use the script task like this: ..
<script language="groovy">
//foo
</script>
..or the groovy task like that:
<groovy>
...
0
votes
1answer
14 views
Replaceregexp with property value depending on the matched group
I'd like to replace some replace marks in css files with values out of a property file. What i did so far is:
<target depends="prepare" name="build_css">
<replaceregexp>
...
0
votes
0answers
13 views
ant compress and override js/css files
Hello i am trying to compress all the .css and .js files from a directory and overwrite the original file with the same name(no concatenation)
I am using this code ...
0
votes
1answer
35 views
Executing unit test cases through ant in the process of creating build [duplicate]
I am executing ant build, can we automate unit test cases along with the build creation.
0
votes
1answer
26 views
testng task not running with ant
Using ant to run testng tests but it does not run or show any error. even the message(Running Tests) is not printed in the console. here is the build.xml. build happens successfully and creates a JAR ...
0
votes
0answers
25 views
exec FATAL Executable name has embedded quote, split the arguments
I am trying to create a blackberry build using phonegap 2.7.0 and blackberry webworks SDK, but i am getting an error.
I am using "ant blackberry build" command to create blackberry build.
build:
...
0
votes
1answer
24 views
Ant copy task corrupts UTF-8 symbols
I have a .properties file with translations in Arabic. I am using it to replace strings in an html file. However, when I start the copy task, it completely corrupts the symbols and I get something ...
1
vote
0answers
24 views
License-Maven-Plugin equivalent in ant
In my Java EE project we are using ANT as the build tool.
Is there an equivalent for License Maven Plugin in ANT World?
0
votes
1answer
41 views
ant - if doesn't support the “name” attribute
i have a requirement that as follows.
I have a .properties file (with name=value pair) from which i am reading couple of properties.
i want to check a particular property exist or not.
i am getting ...
0
votes
1answer
22 views
svn ant - name is undefined
I'm trying to update my codebase using ant. I have placed svnant.jar, svnClientAdapter.jar, svnjavahl.jar under ANT_HOME\lib directory. I'm using the bellow code snippet and it gives error.
...
0
votes
1answer
15 views
Building an Ant JAR
Downloaded Ant and set it up successfully, however when I run from command line I see the following:
C:\>ant
Buildfile: build.xml does not exist!
Build failed
...
0
votes
0answers
52 views
Java classpath within a jar, within a jar
I have a jar which has all libraries inside of it already. This jar needs to become part of a larger "packager" project where it will be deployed as a jar, then modified.
I would like to both use ...
0
votes
1answer
16 views
How can I get ant argument in commandline in build xml?
How can I get ant input argument in commandline in build xml???
I have command:
C:\> Ant TestApp WebAppUSA WebSvcEurope -Denv dev
In build.xml, I hope to get these three arguments values:
...
0
votes
1answer
18 views
Travis CI can't find Ivy jarfile
I'm new to Java and Travis CI, and running into an error configuring my project. I'm using ant to build, and ivy to manage dependencies. My ant build downloads an ivy jarfile directly if it's not ...
0
votes
0answers
25 views
Pass FlexMonkey args via ANT
I used to add my FlexMonkey args directly in the Flex Compiler window in the FlashBuilder IDE:
-include-libraries
"../libs/automation_monkey4.x.swc"
...
1
vote
2answers
37 views
Checkup for exact content of folder (no more, no less folders/files)
I have few directories where I need to verify that these directories contain exact list of files and directories and if there are some files or directories more or less is should say so.
The very ...
0
votes
1answer
30 views
Copy the folder along with parent folder
I have a simple question, but I am unable to figure out a way to do it. I have a folder called EDSDK and it internally contains sub-folders. Now in my ant itself I wish to copy all those files.
i.e.
...
0
votes
0answers
23 views
junit test suite report
I have junit test suite having 8-10 test cases classes .When running the junit suite the report is getting generated but the report contains all method from all test cases classes.It's very difficult ...
0
votes
1answer
24 views
Ant check if a directory (and sub directories) contains a certain file
I'm trying to check in Ant if a directory (and sub directories) contains a certain file
I'm using ant contrib with :
<if>
<available>
<filepath>
<fileset ...
0
votes
0answers
82 views
The import package cannot be resolved
I have a liferay portlet.
I've added some external libraries using maven.
In ide no errors, it can recognize, but
when deploying with ant , it says no such package and class
import pack.SomeClass;
...
0
votes
1answer
47 views
ant - Need to get only file name without extension and entire path
I have couple of .xml files in a folder.I want to loop on each .xml file.It is getting fine.
I want to take only .xml file name without entire path.
How can i achieve that.?
I am using the below ...
0
votes
1answer
20 views
“Unable to locate tools.jar” while the environment variables are correct
I want to configure my PC (Windows 7) so to use phonegap 2.7.0 and create an android application so according this tutorial I m confirured the enviroment variables.
Below are the variables we need ...
0
votes
1answer
16 views
How to build an ant target from DOS command-line when target starts with a '-' as in -ivy-info
While troubleshooting a problem with apache-ivy, I want to call an ant target named -ivy-info defined in my build.xml. My -ivy-info target calls the ivy:info task and the ivy:buildnumber task and ...
0
votes
1answer
24 views
Ant task to check that xml node exists in xml file
I have xml file inside that I want to add xml say
<car name="BMW">
<color>Red</color>
<model>x3</model>
</car>
I wish to check if node already exists ...
1
vote
1answer
46 views
How do I get eclipse to edit *build.xml as an ant build file
I am running eclipse Indigo.
I have some build files that are NOT named build.xml
How do I update the eclipse config so that eclipse will treat these as ant build files.
I have looked at ...
0
votes
1answer
25 views
how to pass parameters to ant task's depends field
I have a build.xml that should receive dynamically parameters to the depends field.
I define this parameter in some other app.xml such as:
ops=op1, op2, op3,op4,op5,.... opn
then I import this ...
0
votes
1answer
22 views
Deployment of a web project to Glassfish via ANT in Java for all platforms
I have a web project that deploys war files, and right now I can deploy to Glassfish in Windows. Here is my build.xml's necessary part.
<target
name="deploywar"
description="Varolan WAR ...
0
votes
0answers
24 views
testng folder paths are messed up when ran from an ant
I'm trying to run a test to check if a folder is empty. This is pretty easy, but the problem is that I run it locally and on a server. Locally I run the test and is green, but on the server its ran ...
0
votes
2answers
24 views
Classpath is not working
I got source code from Hermes (hermes2_src_20100121). When I extracted it has about 10 folders which is separate projects.
/myd1/Exetel/Hermes_SRC/ebxml-pkg
/myd1/Exetel/Hermes_SRC/CorvusEbMS
...
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 ...

