Author: hlship
Date: Tue Jun 3 16:09:24 2008
New Revision: 662914
URL: http://svn.apache.org/viewvc?rev=662914&view=rev
Log:
Trim down the build.xml to just what works.
Modified:
tapestry/tapestry5/trunk/build.xml
Modified: tapestry/tapestry5/trunk/build.xml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.xml?rev=662914&r1=662913&r2=662914&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.xml (original)
+++ tapestry/tapestry5/trunk/build.xml Tue Jun 3 16:09:24 2008
@@ -15,7 +15,7 @@
limitations under the License.
-->
-<project default="generate" xmlns:mvn="urn:maven-artifact-ant">
+<project default="assemble" xmlns:mvn="urn:maven-artifact-ant">
<!-- Requires Ant 1.7.0 to execute! -->
@@ -184,27 +184,5 @@
<delete dir="${binimage.dir}" quiet="true"/>
</target>
- <target name="generate" description="Generate and deploy the build.">
- <macrodef name="maven">
- <attribute name="args"/>
-
- <sequential>
- <echo><![CDATA[
-
-*** Executing mvn @{args} ***
-
-]]></echo>
- <exec searchpath="true" executable="mvn">
- <arg line="@{args}"/>
- </exec>
- </sequential>
- </macrodef>
-
- <maven args="clean"/>
- <maven args="install"/>
- <maven args="site site:deploy -Pjavadoc"/>
- <maven args="deploy -Pdeploy"/>
- <antcall target="assemble"/>
- </target>
</project>