blob: 277f109953fdd53a7e403ba6cada66e1fcc7796d [file] [log] [blame]
<project name="Build specific targets and properties" default="noDefault">
<!-- =====================================================================
The Following Properties are available in all targets:
- eclipse.base : the base folder everything will be collected into
- eclipse.plugins : the plugins folder
- eclipse.features: the features folder
- archiveFullPath : the full path of the final archive once it is created
===================================================================== -->
<!-- ===================================================================== -->
<!-- Called after invoking the gather.bin.parts targets for all plugins -->
<!-- and features. Results exist as folders and have not yet been jarred. -->
<!-- ===================================================================== -->
<target name="post.gather.bin.parts">
<echo message="eclipse.base: ${eclipse.base}" />
</target>
<!-- ===================================================================== -->
<!-- Called just prior to signing a jar -->
<!-- ===================================================================== -->
<target name="pre.jarSigning">
</target>
<!-- ===================================================================== -->
<!-- Called after all plugins and features have been jarred -->
<!-- (and potentially signed) -->
<!-- ===================================================================== -->
<target name="post.jarUp">
<echo message="plugins: ${eclipse.plugins} "/>
<echo message="features: ${eclipse.features}"/>
</target>
<!-- =====================================================================
Called just before the archive file is built
In addititon to the properties listed above:
- rootFolder : the folder containing the root files
===================================================================== -->
<target name="pre.archive">
<echo message="rootFolder: ${rootFolder}" />
<echo message="archiveFullPath: ${archiveFullPath}" />
</target>
<!-- ===================================================================== -->
<!-- Default target -->
<!-- ===================================================================== -->
<target name="noDefault">
<echo message="You must specify a target when invoking this file" />
</target>
</project>