brekke 02/03/14 20:25:27
Added: . build-maven.xml project.properties
Log:
Working build-maven.xml/project.properties for using maven to build t2. The
xdocs/stylesheets/project.xml xdocs will need to be moved to xdocs and the
maven specific links added. This can be done once the location of the dvsl
stylesheets is worked out.
Revision Changes Path
1.1 jakarta-turbine-2/build-maven.xml
Index: build-maven.xml
===================================================================
<?xml version="1.0"?>
<project name="maven" default="maven:jar" basedir=".">
<!-- Give user a chance to override without editing this file
(and without typing -D each time they invoke a target) -->
<!-- Allow any user specific values to override the defaults -->
<property file="${user.home}/build.properties" />
<!-- Allow user defaults for this project -->
<property file="build.properties" />
<!-- Set default values for the build -->
<property file="project.properties" />
<!-- maven:start -->
<!-- ================================================================== -->
<!-- D E L E G A T O R S -->
<!-- ================================================================== -->
<target
name="maven:site">
<ant antfile="${maven.home}/build-docs.xml" target="site"/>
</target>
<target
name="maven:jar">
<ant antfile="${maven.home}/build-maven.xml" target="jar"/>
</target>
<target
name="maven:install-jar">
<ant antfile="${maven.home}/build-maven.xml" target="install-jar"/>
</target>
<target
name="maven:env">
<ant antfile="${maven.home}/build-maven.xml" target="env"/>
</target>
<target
name="maven:docs">
<ant antfile="${maven.home}/build-docs.xml" target="docs"/>
</target>
<target
name="maven:test">
<ant antfile="${maven.home}/build-test.xml" target="test"/>
</target>
<target
name="maven:singletest">
<ant antfile="${maven.home}/build-test.xml" target="run-singletest"/>
</target>
<target
name="maven:clean">
<ant antfile="${maven.home}/build-maven.xml" target="clean"/>
</target>
<target
name="maven:metrics">
<ant antfile="${maven.home}/build-metrics.xml" target="metrics"/>
</target>
<target
name="maven:dist">
<ant antfile="${maven.home}/build-maven.xml" target="dist"/>
</target>
<target
name="maven:deploy-site">
<ant antfile="${maven.home}/build-docs.xml" target="deploy-site"/>
</target>
<target
name="maven:gump-descriptor">
<ant antfile="${maven.home}/build-maven.xml" target="gump-descriptor"/>
</target>
<target
name="maven:javadocs">
<ant antfile="${maven.home}/build-docs.xml" target="javadocs"/>
</target>
<target
name="maven:compile">
<ant antfile="${maven.home}/build-maven.xml" target="compile"/>
</target>
<target
name="maven:update-jars">
<ant antfile="${maven.home}/build-maven.xml" target="update-jars"/>
</target>
<!-- maven:end -->
</project>
1.1 jakarta-turbine-2/project.properties
Index: project.properties
===================================================================
# -------------------------------------------------------------------
# P R O J E C T P R O P E R T I E S
# -------------------------------------------------------------------
maven.home = ${user.home}/maven
compile.debug = on
compile.optimize = off
compile.deprecation = off
src.dir = src
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>