Is there a way to tell the SAR Ant Task that we want to include contextualizable data/directories in the SAR ?
It seems it's only possible to define libraries (jars) and classes, but not
files.
Any solution?
You want to include content inside your SAR that is not a JAR?
Easy, just add a nested fileset:
<sar sarfile="${name}.sar" config="config.xml" environment="environment.xml" assembly="assembly.xml">
<lib dir="${lib.dir}">
<include name="cornerstone-*.jar"/>
</lib>
<fileset dir="${build.dir}">
<include name="webapp/**"/>
</fileset>
</sar>
-pete
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
