Hi I am using this
ant file in RAD 6
<?xml version="1.0" encoding="UTF-8"?>
<project default="exportEar">
<target name="exportEar" depends="">
<echo message="Exported EAR files to " />
<earExport earprojectname="e1" earexportfile="C:/RTemp/e1.ear"<br /> exportsource="true" IncludeProjectMetaFiles="false" overwrite="true" />
<echo message="Test Message"/>
</target>
</project>
It works fine no errors but I do not see the file generated
here is the output at console
Buildfile: C:\workspace\e1\META-INF\build.xml
exportEar:
[echo] Exported EAR files to
[earExport] Exporting: e1 (Begin) ...
[echo]
Test Message
BUILD SUCCESSFUL
Total time: 219 milliseconds
Thanks