0
votes
1answer
13 views

Echo output from a custom task

I have a black-box ant task which creates output that I consume in another task. I need to write the output of create-UUIDs into a file. Neither of my ideas are working, because the redirector and ...
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
50 views

How can I execute a PHP file using the Ant script with php output in console, while executing file

My ant script <target name="testRunPHP"> <exec executable="${php}" failonerror="true" dir="${source}"> <arg ...
-3
votes
0answers
37 views

Mechanical Turks in Android [closed]

I am trying to create an app that takes pictures and then create hits on the Amazon Mechanical turk using the pictures taken as part of the question. Right now, I have done taking the pictures part ...
0
votes
1answer
32 views

How to ensure that apache-ant apply-tasks finish before further execution

I use the following code to resolve all PHP includes and create a static html file. When this is done, I want to delete the source php file: <apply executable="php" parallel="false" ...
-2
votes
1answer
45 views

Remote debugging in apache ant and eclipse [closed]

What is the remote debugging command for ant .I' m using eclipse .
0
votes
1answer
48 views

Apache ANT Version issues during Netbeans Building

I'm trying to build a java project using netbeans ide,but i keep getting Please build using Ant 1.8.0 or higher error,i think this is due some version difference in the netbeans IDEs, How can i ...
0
votes
0answers
70 views

strange apache errors after rsync (ie. files not found), restarting apache fixes

I have a project in eclipse. Every time I save something an ant build is triggered that sets up this project on localhost properly. This way I do not have to commit code changes before I can test them ...
0
votes
0answers
37 views

How do i changed Header and Footer by using ANT?

Is it possible to change via ant the section of new created *.html files? Detailed: I have a index.php within a lot of *.css includes and *.js includes. These files i minified with the google ...
2
votes
1answer
164 views

How can I specify the classpath in the build file of an ftp tasks

I would like to specify the classpath for an fpt task directly in my Ant Build script. I tried the following: <target name="ftp-upload" depends="build-html"> <echo message="Ftp ...
0
votes
1answer
157 views

How to detect whether tomcat and ant are installed on linux machine

I am trying to install Tomcat and Ant on my linux machine, but before installing them i just need to check whether they are already installed or not. Regarding tomcat: I googled a lot and searched ...
-3
votes
1answer
67 views

How do I build ant's build.xml using NetBeans?

I've downloaded sources of one application using Subversion repository, but it turned out, that those sources were not composed to a NetBeans project. It was said in the manual, that I can build it ...
0
votes
1answer
146 views

Why does ant build fail with sudo even though it succeeds when run as root user?

I am compiling an Android app on server with java build tool ant. When I run the following as root user the build succeeds: export ANT_HOME=/usr/local/ant export JAVA_HOME=/usr/local/jdk export ...
-2
votes
1answer
41 views

needed ant copy script to copy package path only [closed]

I have directory structure as below main | \--dir_1 | \--com | \--base | \--test1 | ...
0
votes
1answer
69 views

Automating installations in Windows using Apache ANT

I am carrying out a POC to find a way to refresh a testing server. Refreshing involves Deletion of several files Uninstalling some programs from Windows Add/Remove programs Installing fresh copy of ...
1
vote
0answers
88 views

Can Apache DirectoryScanner handle paths with parent directory references?

everyone, I'm using Apache's DirectoryScanner like this: DirectoryScanner scanner = new DirectoryScanner(); scanner.setIncludes(new String[]{"/home/John/../Alex/file"}); scanner.scan(); String[] ...
1
vote
1answer
63 views

How Do I exclude files of similar names from an Ant build script?

I'm converting LESS to CSS via an ant build script. I want to only convert a LESS file if I haven't already converted that file previously. How do I check one folder for the CSS file and then exclude ...
0
votes
1answer
172 views

excel ant selenium test

I have testcases in an excel file. A java program accesses that, and I run them on a browser using selenium RC. Now, when I use ANT to generate an HTML report, it treats the entire thing as 1 test ...
3
votes
1answer
85 views

Ant build not able to recognize spanish characters

I am having a Selenium project that uses Apache ANT to execute the tests. In a certain scenario i need to validate a few Spanish texts like "eBay EspaƱa" i.e. text with accented characters. When i ...
0
votes
2answers
161 views

apache ant build.xml

Is it possible to create files on the fly using apache ant - currently I have my apache ant build.xml downloading all my JS script dependencies. What I am want to do now is create some HTML templates ...
1
vote
1answer
37 views

UnsupportedClassVersionError on JDBC Java Tutorial

I am having a common issue the known UnsupportedClassVersionError, i am running the JDBC Tutorial of http://docs.oracle.com/javase/tutorial/jdbc/basics/gettingstarted.html , using Ant Apache, which is ...
0
votes
0answers
502 views

Setting ant.jar / ANT_HOME / ANT Classpath - ANT not working

I'm new to ant but previously had it working fine. Something then happened after I ran a build.xml file and I started getting errors even when checking what version of ant was installed. I'm not 100% ...
0
votes
1answer
365 views

Apache Ant exec error

When I try to run "ant" in the CLI, I get the BUILD FAILED "Execute failed: java.in.IOException: Cannot run program "phploc": CreateProcess error=2" error (at the exec executable="phploc" line). My ...
0
votes
1answer
357 views

Unable to install Apache Ant

i have downloaded the Apache Ant file "apache-ant-1.8.4-bin.zip" from the following link :- http://ant.apache.org/bindownload.cgi. then i have added an environment variable to my windows 7 operating ...
3
votes
1answer
1k views

Enabling javac debugging for Apache ANT

Just a simple question. For ANT builds, if I leave the the debuglevel parameter completely out will it compile with ALL debugging information? Or would it be better to include ...
1
vote
2answers
257 views

How to add custom jar in Apache Ivy

Our application has a custom jar trades.jar and I want to upload it to local Apache Ivy repository. How should I do it. I know in maven it can be done using command 'mvn deploy:deploy'
2
votes
1answer
1k views

pass arguments to apache-ant exec task based on the variable's value

I am only using apache-ant and not ant-contrib I have an ant target <target name="stop" depends="init" > ... </target> In which i want to invoke exec task. If the value of a variable ...
0
votes
0answers
77 views

I want to create the directory structure from SVN dir to LINUX using ANT

I need to map the svn directory to LINUX directory using ANT for example -the dir structure is stored in a txt file - the contents of the txt file 'map.txt' are as follows - format = svndir:.linux ...
0
votes
1answer
443 views

Apache Ant + Ivy syntax error

I have just setup my first project using apache ant with ivy as dependency manager. It is working great! But I have one thing I cannot get over. Since I have several dependencies that use slf4j there ...
1
vote
0answers
94 views

ANT build config with dependency on core files

Currently working on a PHP/HTML/JS project that is made up of a 'core' directory and multiple individual 'product' directories. Dir structure as follows... Core JS PHP Product1 JS ...
0
votes
1answer
433 views

Match subdirectories with wildcards using Apache Ant?

I'm trying to setup a build file and I was curious if you can use wildcards in a property to denote filepaths? Or what a better way to tackle this problem is? As you can see below I want all the ...
-1
votes
2answers
33 views

dont want to build again and again

I have a webapplication lets say at location C:\Test\MyWeb Every time I make some change I have to rebuild it via ant package command. Then I copy the MyWeb.war file into apache's webapp folder. I ...
0
votes
0answers
76 views

metro web service wsdl file parsing with ant task

I have a project, I am working on Apache Ant. I will process metro web service wsdl file, with ant task in a build.xml file. Can I call methods that in the web service class ? How can I do ?
0
votes
1answer
476 views

build error using ant build tool “can't open file 'C:\Program': [Errno 2] No such file or directory”

i configured python to path variable, below is the path variable content ...
0
votes
1answer
1k views

getting Ant build error: Cannot run program “python”

This is the build file: <exec executable="python" failonerror="true"> <arg line="${installer.izpack.dir}/utils/wrappers/izpack2exe/izpack2exe.py"/> <arg ...
1
vote
3answers
155 views

Why does the Apache Foundation release two build tools (Ant and Maven)? [closed]

I have experience with Ant but not with Maven. My question is: Why does the Apache Foundation release two build tools (Ant and Maven)? Why can't the same Ant tool be upgraded to Maven? What is ...
3
votes
2answers
413 views

Simple HTTP server application for Windows that can be launched on-demand?

I need a simple HTTP server application that meets the following criteria: It must run on Windows. It must NOT require new Windows installations of any sort: programs, frameworks, services, etc. It ...
2
votes
2answers
110 views

Preferring the latest jar in a sea of dependencies (java)

I have a large Ivy project, and Ive noticed that my code, which run well in eclipse, cause a compile error when run in ant. I've narrowed the problem down to the following line : ...
5
votes
4answers
395 views

Ant: Two questions about dirsets

I have two questions about the dirset type in Apache Ant. Is a dirset really a set, with no order guaranteed, or does it preserves the input order? I want to use ant:contrib to iterate over a set of ...
0
votes
0answers
374 views

Running ant as administrator…through Eclipse

I just inherited a project that uses Tomcat to serve JSPs, but Apache httpd to server Javascript... The Ant build for this project creates and deletes directories inside the C:\Program Files\Apache ...
1
vote
1answer
316 views

Jenkins build fails occasionally during maven install (or update) on slave executor

I'm running some maven builds in Jenkins, using a Master/multi-slave setup. These builds mostly run fine, but every now and again I get this inexplicable error in the console output for the executing ...
0
votes
2answers
95 views

Apache Ivy: Restrict Publishing to a Repository

I'd like to have a setup where developers can resolve/retrieve dependencies from a URL Resolver (a remote, in-house server hosting our repo) but cannot publish to it (for security and code integrity ...
1
vote
2answers
738 views

Apache Ivy: Difference between local Ivy cache and local repository

By default Ivy installs a "local cache" under your <HOME>/.ivy2 directory. But if I decide to "host" a local repository on the same machine, say, at <HOME>/workbench/ivy/, then how are ...
0
votes
0answers
2k views

Install Ant on Mac [closed]

I need to install the latest version of Ant on Mac OS X. The instructions I've seen were not clear since never used the Terminal before.
1
vote
3answers
451 views

cannot unset properties with ant-contrib when loading two extenal property files

So ... I have build.xml that loads property file from basedir. Then, as the target I perform the following: <var name="Var1" value="<property_from_**first**_loaded_property_file>" /> ...
3
votes
1answer
611 views

Apache Ant: turn off output for a specific task

I have a build file that has different variety of tasks. Some of these are in-house tasks that I am able to control the amount of logging/output generated. The other tasks are libraries that I have ...
0
votes
1answer
179 views

How can I solve this error, with BeanPropertyTarget?

I do appreciate any help, I'm still new with Java and webservices. The problem is: I imported a WSDL to my project, and when I consume it sometime it works fine and for another situations I got an ...
3
votes
1answer
1k views

Android Ant Build

I would like to build two versions of my Androidapplication using an Apache ant file. The problem is, that both versions are identical except the advertisement in the lite version. I read about using ...
0
votes
1answer
90 views

how to copy a directory in ant

Say i have directory structure like this base_dir1/src_dir base_dir2/dest_dir How do i copy src_dir(folder+contents) into dest_dir. If i use copy task like this : <copy ...
0
votes
1answer
382 views

Restart Apache using Ant script for both unix and windows Systems?

I searched and found some ques as ** how to restart apache using nant script ** and tried similar code but got some message..i tried this code <exec ...

1 2 3