Hi Guys,
How to create a war file using ant script. I was able to create war file but unable to add weblogic.xml and tlds directory into WEB-INF folder.
In an ANT target, I need to specify a condition. If "websso" property is true then copy file "a.txt" else copy file "b.txt".
I checked here
http://ant.apache.org/manual/CoreTasks/condition...
Hi,
Can you please give me steps,procedure, sample code , links on sample ant build script to compile generate jar file out of simple hello world java class at some target location. Thanks ...
I have the following ANT target
<target name="encryptpwd">
<java fork="true" classname="com.documentum.fc.tools.RegistryPasswordUtils">
<classpath>
...
I want to redirect all the build output from ant build file to an output file
Is it possible to use Hash tables in ANT? Can someone please provide an example?
I have jar file called "webtop.jar" at the following location
C:/cvs_repo/Documentum/webtop/src/WEB-INF/lib/webtop.jar
In this jar there is a properties file
com\documentum\web\formex...
Using the following we are adding a file to an existing jar file
<target name="websso.is.true" if="${websso}">
<echo>websso == TRUE</echo>
<zip destfile="../${cvs.module.core}/${cvs.m...
Hello,
i wonder how to make ant execute the same target more than once with dirrent properties.
The next script doesn't work as I expected:
<target name="test1">
<property n...