0
votes
1answer
52 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 ...
0
votes
2answers
97 views

Start Jboss with Ant. Command exec doesn't work

I try to start JBoss with ant. When i execute this script : <target name="start-jboss" > <exec executable="${jboss.bin.dir}\run.bat" > <arg ...
1
vote
0answers
173 views

Execute Grails custom script in _Events.groovy with Ant exec during build process

Grails app version: 2.0.4. I have a Grails custom script called MyScript.groovy in the scripts folder, pretty much like this: includeTargets << grailsScript("_GrailsInit") target(main: "Run ...
0
votes
2answers
517 views

linux - java / ant exec: error=2, No such file or directory

I'm using fedora 18 and jdk 1.7.13 installed in /usr/java. All executable files under bin folder have -rwxr-xr-x permission. I set both ANT_HOME and JAVA_HOME in my .bashrc: export ...
1
vote
0answers
41 views

Running an exe from an ant build script problems

I'm trying to run an executable from an ant build script and having no joy. The executable runs but hangs. Basically this program takes a file in and converts it to another format and splits it into ...
0
votes
1answer
263 views

Running a bash script from Ant and passing it multiple arguments

I'm trying to run the following command from an Ant build file: sh /home/myuser/scripts/run.sh -p=8888 -z=true /home/myuser/resources/mydir So far here's my best attempt: <target name="run"> ...
1
vote
3answers
369 views

How to change the Path variable in ant exec task?

I tried setting the Path variable in ant exec task using this link. But its not working somehow. I am trying to add THRIFT_HOME which is set to basedir currently and I have the thrift.exe file in the ...
1
vote
0answers
98 views

ant : macro for exec that echoes command it executes, including arguments

Currently I do this: <echo message="cd ${build.dir}/scripts ; ./update.sh ${arg1} ${arg2} ${arg3} ${arg4} ${arg5} ${arg6} ; cd -" /> <exec dir="${build.dir}/scripts" ...
1
vote
0answers
133 views

How to terminate <exec> task in ANT after starting server in Windows

I'm trying to start a weblogic server using ant exec command. After the operation triggers the exec process creates a child process i.e starts weblogic server. I wish to terminate the parent ant ...
0
votes
0answers
16 views

Java Ant exec task not working in Eclipse/Netbeans [duplicate]

Possible Duplicate: Using exec tag in Ant from Eclipse. How do I extend the PATH? I have a Java ant task which executes the "git" command to retrieve some information about the current git ...
0
votes
1answer
1k views

copy and unzip files to remote machine - ant

I need to copy the zip files from local machine and paste in remote machine and unzip those files in remote machine. I know the first part can be done using the scp (copy zip files from local and ...
3
votes
1answer
188 views

How to put condition in exec in a build.xml file? (Ant in hudson)

How to put condition in exec in a build.xml file? (Ant in hudson) I need to use arg only if something happened(I send some parameters) and I need a if task or a condition for can solve the problem. ...
0
votes
1answer
71 views

server host key not catched - ant script exec

I have created the script which will execute the command in the host machine. <target name="Testpssh"> <property name="failonerror" value="true"/> <exec ...
0
votes
1answer
638 views

exec executable sed

Want to replace value in a txt file on macos using ant. I used the following code, but its giving error: "The type doesn't support nested text data (" ")". <exec executable="sed"> <arg ...
0
votes
1answer
75 views

exec ant replace a value in a .m file

how to write an exec task in ant to replace two values in .m file. Because I want to replace the version number in iphone app, including my build number which i build using hudson, i remotely access ...
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
2answers
420 views

Ant: No such file or directory

I need to write ant script to execute one file in linux but prior to execution of file i need to execute setup file. in putty i used to something like ". ./setup" and then "./executeme" In same way ...
0
votes
1answer
420 views

Need to execute script file using sudo user - run from teamcity

I need to execute a script in Linux platform "runme.sh" (which can be executed as sudo user) using another ant script "build.xml". Now i have execute this build.xml from teamcity. I have code for ...
0
votes
1answer
256 views

Need ant script for sudo type installation of software

I need to write Ant build script to install software in linux env. I have written something like <exec dir="${dir}" executable="/bin/sh"> <arg value="installsoftware.sh"/> ...
1
vote
1answer
650 views

How to set $PATH for php exec or shell_exec

I have set the PATH to run ant and it is working on putty but on php exec it is returning sh ant command not found i have tried to set PATH by export PATH=/usr/ant/bin
0
votes
1answer
174 views

Run a target in a seperate JVM

There is a interesting bug in the wsimport task that seems to destroy the content of a classloader as the task finishes. NetBeans likes to run ant scripts 'in process' and this bug raises all kinds of ...
1
vote
2answers
621 views

Can't run “preverify.exe” using Ant's <exec> task

I am having trouble getting my Ant script (for BlackBerry build) to run the preverify.exe command & pass the correct parameters to it. In the command prompt (Windows 7), this works 100% - the ...
0
votes
1answer
209 views

what's meaning of Ant exec Result:128

my ant was stoped when execute "<exec excultable="c:\myExe.exe"/>",the result code is just "<message priority="error"><![CDATA[Result: 128]]></message>".I don't know what's ...
1
vote
2answers
949 views

Ant exec task as another user

I would like to execute a shell script from an ant build (I saw the exec task seems to do it), but this script has to be executed from a user different thant the one launching ant. Is there a way to ...
0
votes
1answer
187 views

Flash Compiler Does Not Allow Overriding

I have been assigned to work on a Java/Flash/BlazeDS project. When I pull down the project code, I need to run an Ant script as part of the setup. This script eventually compiles the Flash code, as ...
0
votes
1answer
168 views

BlazeDS Generated Files Causing Flex Compiler to Fail

I have never worked with Flash/BlazeDS or Ant before, so sorry if this is simplistic. I have a project that I need to develop some Java code for. The project is using Flash and BlazeDS. For the ...
1
vote
1answer
509 views

In the ant task Exec why is <arg value=“/c”/> provided for executable=“cmd” ? what are the other possible executables?

In the ant task Exec why is <arg value="/c"/> provided for executable="cmd"? What are the other possible executables? Could anyone please explain this ?
1
vote
1answer
141 views

Is executing a sequence of Commands possible using ANT Exec task

In ANT Exec task. I need to cd into a folder (Windows OS) (eg: D:\Testrun) and execute a set of commands in a sequence which will be passed as parameters to the ant script. Is this possible ? Could ...
1
vote
1answer
2k views

Open quote is expected for attribute “executable” associated with an element type “exec”

I am trying to execute a cmd through my ant script. I am getting the following error: build.xml:24: Open quote is expected for attribute "executable" associated with an element type "exec". ...
-1
votes
2answers
350 views

Ant's exec returns an error on copy

I need to concatenate two files. I use Ant's exec for this purpose, but I get the following error. production: [exec] Current OS is Windows 7 [exec] Executing 'cmd' with arguments: [exec] 'copy /B ...
0
votes
1answer
355 views

exec task with output argument using a property doesn't seem to work

I'm running an exec task with an output argument that uses a property value <exec executable="cmd" resultproperty="runStatus" output="${logFolder}/soapui.log" ...
2
votes
2answers
1k views

Ant conditional failure upon executable failure

I have the following XSL target: <target name="refactor-ids"> <echo>Refactor IDs</echo> <exec executable="perl" dir="${basedir}"> <arg value="script.pl" ...
7
votes
4answers
5k views

How can I escape double-quotes in ant?

I need to exec the following command from ant, but I can't figure out how to escape the double-quotes: tasklist /FI "IMAGENAME eq java.exe" /FI "MEMUSAGE gt 50000"
1
vote
1answer
1k views

Ant using the exec target to compile Coffee Scripts

I have an Ant project that uses a bit of Coffee Script. I would like Ant to compile all of the coffee instead of having another build step to compile it. The coffee command line script that I want ...
1
vote
1answer
585 views

Ant: How to avoid SSH passwords?

Problem We have a server over which we have FULL control We have a long, complicated shell script that interacts with this server via SCP and SSH We have an Ant Target that runs the script ...
3
votes
1answer
1k views

How to execute an interactive application from Ant build script?

From http://ant.apache.org/manual/Tasks/exec.html : Note that you cannot interact with the forked program, the only way to send input to it is via the input and inputstring attributes. Also ...
9
votes
1answer
467 views

Change [exec] label in output for Ant <exec> task

I am using Ant's <parallel> task to perform multiple simultaneous targets that use <exec> tasks, but it's difficult to read the output because it is interleaved. Is there any way to change ...
1
vote
1answer
1k views

ant run bat file and go forward

I'm stuck with a stupid problem. The problem is: I need to start proprietary self-made server. This server is started using .bat file (I'm on Windows OS). I've wrote ant target which 1. ...
1
vote
2answers
805 views

In Ant, how do I suppress the exec error “CreateProcess error=2”?

I'm attempting to execute a program, and if that fails I have a fallback method to get the information required. Not everyone who uses this build script will have the program installed. My task has ...
4
votes
1answer
168 views

Is exec a good programming solution to ant OutOfMemory issues?

This question requires a bit of backstory... At my company, we produce a set of PDF and HTML files. A very large set. The current build process (which I designed, in haste) is a Perl script that reads ...
1
vote
3answers
4k views

Ant EXEC failing to run bash script

I am trying to use ant to run a bash script. Ive found that the exec directive is the tool for the job I created a bash script test.sh and in my ant target i added: <project basedir="."> ...
3
votes
1answer
2k views

Ant exec task: How can I read input from console stdin?

I have a call to Ant exec task that needs to accept input from console stdin. Unfortunately, I cannot find a way to do this. The stdin filehandle seems closed to console input at runtime. It is ...
0
votes
1answer
5k views

ANT Execute failed: java.io.IOException: Cannot run program “cp ”: java.io.IOException: error=2, No such file or directory

I'm trying to use ANT to copy files from one directory to another directory on Linux. Firstly I used copy task, it works fine but the file mode is not preserved. Then I changed to use , and that's ...
0
votes
1answer
702 views

How to remove adornments like [exec] when using groovy's AntBuilder

I'm using Groovy's AntBuilder to execute Ant tasks: def ant = new AntBuilder() ant.sequential { ant.exec(executable: "cmd", dir: "..", resultproperty: "exec-ret-code") { arg(value: "/c") ...
2
votes
2answers
717 views

Enabling Console output for exec ANT task

Inside eclipse I'm launching an html page with a swf embedded from ANT using the following Macrodef: <macrodef name="runhtml"> <attribute name="url" /> <attribute name="browser" ...
2
votes
2answers
945 views

How to log the output from cmd tree command using Apache Ant exec task?

I am trying to log the output from cmd tree command using ant with the following: <exec dir="${basedir}" executable="cmd" output="output.txt"> <arg value="tree" /> ...
0
votes
1answer
122 views

How to pass (cli) arguments by file in Ant

I'm using Ant to build my project, generate docs and check coding strandard violations. I use some external tool through exec task. Exec prefixes the output lines with [exec] This string messes my ...
4
votes
2answers
934 views

Ant 1.8.0 low performance

New Ant 1.8.0 (release Feb 1) introduces some cool features, so I tried my build/deployment scripts with new Ant. I was surprised that execution time becomes in 10-30 times slower for some targets! ...
1
vote
2answers
1k views

Ant task that processes multiple files

in Ant I want to execute a Java task on a fileset. I use the Java task to run rhino which runs a JS beautifier. The later works without any problems, except that it might seem little bit awkward to ...
5
votes
3answers
17k views

Ant exec - cannot run program 'start' CreateProcess error=2

I can't run the windows 'start' using ant exec. Ant version 1.7.1. Here is sample build.xml to recreate the problem <project name="test" basedir="." default="test-target"> <target ...

1 2