mcconnell 2004/03/22 01:40:52
Added: merlin/composition/api build.xml project.properties
Log:
Add gump support.
Revision Changes Path
1.1 avalon/merlin/composition/api/build.xml
Index: build.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<project default="warning" name="Gump Build Support" basedir=".">
<property file="${basedir}/project.properties"/>
<property file="${basedir}/../project.properties"/>
<target name="need-for-common-build" unless="avalon.buildsystem.available">
<fail>
===================================================================
BUILD SYSTEM FAILURE!
===================================================================
a required file, ${avalon.buildsystem}/maven-common-gump-build.xml,
cannot be found. Try setting the avalon.buildsystem property in
project.properties to the correct location.
</fail>
</target>
<target name="delegate">
<available file="${avalon.buildsystem}/maven-common-gump-build.xml"
property="avalon.buildsystem.available"/>
<antcall target="need-for-common-build"/>
<ant inheritRefs="true" target="avalon:${target}"
antfile="${avalon.buildsystem}/maven-common-gump-build.xml"
inheritAll="true"/>
</target>
<target name="warning">
<antcall target="delegate">
<param name="target" value="warning"/>
</antcall>
</target>
<target name="jar">
<antcall target="delegate">
<param name="target" value="jar"/>
</antcall>
</target>
<target name="javadocs">
<antcall target="delegate">
<param name="target" value="javadocs"/>
</antcall>
</target>
<target name="dist">
<antcall target="delegate">
<param name="target" value="dist"/>
</antcall>
</target>
</project>
1.1 avalon/merlin/composition/api/project.properties
Index: project.properties
===================================================================
project.name = avalon-composition-api
avalon.buildsystem = ${basedir}/../../../buildsystem
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]