Adding command line arguments to batch file produced from Ant build script
-
Hi, I have an ant build script as shown below.
<target name="runscript" depends="compile">
<echo file="run.sh" append="false">java -cp ${mclib}/mundocore.jar:bin Chat</echo>
<chmod file="run.sh" perm="+x"/>
<echo file="run.bat" append="false">java -cp ${mclib}/mundocore.jar;bin Chat</echo>
</target>The build script portion produces a batch file named run.bat, which simply executes a java compiler command.
java -cp C:\mundocore-1.0.0-RC1\lib\se/mundocore.jar;bin Chat
I want to send some commandline arguments with the run.bat script.e.g in command prompt
run.bat hello
How can i change the the ant build script to generate a batch file that can accept arbitrary number of command line arguments. Thanks in advance...
-
Hi, I have an ant build script as shown below.
<target name="runscript" depends="compile">
<echo file="run.sh" append="false">java -cp ${mclib}/mundocore.jar:bin Chat</echo>
<chmod file="run.sh" perm="+x"/>
<echo file="run.bat" append="false">java -cp ${mclib}/mundocore.jar;bin Chat</echo>
</target>The build script portion produces a batch file named run.bat, which simply executes a java compiler command.
java -cp C:\mundocore-1.0.0-RC1\lib\se/mundocore.jar;bin Chat
I want to send some commandline arguments with the run.bat script.e.g in command prompt
run.bat hello
How can i change the the ant build script to generate a batch file that can accept arbitrary number of command line arguments. Thanks in advance...
Take a look at this discussion[^].