2007-02-28 17:57:03 -05:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
|
|
|
|
2008-12-16 23:08:44 -05:00
|
|
|
<!-- START SNIPPET: ant-bootstrap
|
2008-07-10 08:10:04 -04:00
|
|
|
|
2009-02-17 16:46:38 -05:00
|
|
|
By default the bootstrap will use ~/.m2/repository as the integration repository but you can define the integration
|
2008-12-16 23:08:44 -05:00
|
|
|
repository by specifying a property on the command line:
|
2008-07-10 08:10:04 -04:00
|
|
|
|
|
|
|
ant -Dmaven.repo.local=/my/integration/repository
|
|
|
|
|
2009-02-17 16:46:38 -05:00
|
|
|
Those familiar with Maven will note this is the same way the local repository can be set from the command-line.
|
2008-12-16 23:08:44 -05:00
|
|
|
This facilitates having a set of builds converge on the same repository for integration purposes.
|
2008-07-13 14:11:17 -04:00
|
|
|
|
2008-12-16 23:08:44 -05:00
|
|
|
END SNIPPET: ant-bootstrap -->
|
2008-07-10 08:10:04 -04:00
|
|
|
|
2008-04-15 11:41:13 -04:00
|
|
|
<project default="all" basedir="." xmlns:artifact="urn:maven-artifact-ant">
|
2009-02-17 16:46:38 -05:00
|
|
|
|
2008-10-30 17:46:48 -04:00
|
|
|
<property name="it.workdir.version" value="3.0.x"/>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2008-04-15 11:41:13 -04:00
|
|
|
<target name="initTaskDefs">
|
2008-11-25 02:11:35 -05:00
|
|
|
<xmlproperty file="pom.xml" prefix="pom.xml" />
|
2008-07-10 07:22:08 -04:00
|
|
|
<path id="maven-ant-tasks.classpath" path="maven-ant-tasks-2.1-SNAPSHOT.jar"/>
|
2008-04-15 11:41:13 -04:00
|
|
|
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant" classpathref="maven-ant-tasks.classpath"/>
|
|
|
|
</target>
|
2006-12-06 19:17:53 -05:00
|
|
|
|
2008-04-15 11:41:13 -04:00
|
|
|
<target name="isMavenHomeSet" depends="initTaskDefs">
|
2006-10-11 02:23:43 -04:00
|
|
|
<property environment="env"/>
|
|
|
|
<condition property="maven.home" value="${env.M2_HOME}">
|
|
|
|
<isset property="env.M2_HOME"/>
|
|
|
|
</condition>
|
2008-12-18 02:59:58 -05:00
|
|
|
<fail message="You must set the M2_HOME environment variable or specify a maven.home property to this Ant script">
|
|
|
|
<condition>
|
|
|
|
<or>
|
|
|
|
<not>
|
|
|
|
<isset property="maven.home" />
|
|
|
|
</not>
|
|
|
|
<equals arg1="${maven.home}" arg2="" trim="true" />
|
|
|
|
</or>
|
|
|
|
</condition>
|
|
|
|
</fail>
|
2006-10-11 02:23:43 -04:00
|
|
|
</target>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2008-04-15 20:41:00 -04:00
|
|
|
<target name="init" depends="isMavenHomeSet">
|
2009-02-17 16:46:38 -05:00
|
|
|
<xmlproperty prefix="pom" file="pom.xml"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
<dirname file="${maven.home}" property="maven.home.dirname"/>
|
2008-07-13 13:59:26 -04:00
|
|
|
<!-- Initialize properties -->
|
2007-09-08 19:42:20 -04:00
|
|
|
<property name="maven.home.basename.expected" value="apache-maven-${pom.project.version}"/>
|
2009-01-13 13:18:03 -05:00
|
|
|
<property name="maven.home.effective" location="${maven.home.dirname}/${maven.home.basename.expected}"/>
|
2009-01-12 16:54:28 -05:00
|
|
|
<property name="maven.assembly" location="apache-maven/target/${maven.home.basename.expected}-bin.zip"/>
|
2008-07-13 13:59:26 -04:00
|
|
|
<property name="maven.repo.local" value="${user.home}/.m2/repository"/>
|
2009-03-05 13:58:03 -05:00
|
|
|
<property name="maven.debug" value="-e"/>
|
2009-05-20 19:28:39 -04:00
|
|
|
<property name="maven.test.skip" value="true"/> <!-- TODO: Change this default back to false once we're done -->
|
2009-02-17 16:46:38 -05:00
|
|
|
<property name="surefire.useFile" value="true"/>
|
2009-01-13 13:18:03 -05:00
|
|
|
<echo>maven.home = ${maven.home.effective}</echo>
|
2009-03-05 08:00:21 -05:00
|
|
|
<echo>maven.repo.local = ${maven.repo.local}</echo>
|
2006-10-11 02:23:43 -04:00
|
|
|
</target>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2006-10-20 22:10:23 -04:00
|
|
|
<target name="clean-bootstrap" description="cleans up generated bootstrap classes">
|
2007-01-17 16:18:17 -05:00
|
|
|
<delete dir="bootstrap"/>
|
2006-10-20 22:10:23 -04:00
|
|
|
</target>
|
|
|
|
|
2009-02-17 16:46:38 -05:00
|
|
|
<target name="pull" depends="init" unless="skip.pull">
|
|
|
|
<property name="verbose" value="false"/>
|
2008-04-15 11:41:13 -04:00
|
|
|
<!-- Pull the dependencies that Maven needs to build -->
|
|
|
|
<copy file="pom.xml" tofile="dependencies.xml"/>
|
2009-04-22 19:04:06 -04:00
|
|
|
<replace file="${basedir}/dependencies.xml" token="<!--bootstrap-start-comment-->" value="<!--"/>
|
|
|
|
<replace file="${basedir}/dependencies.xml" token="<!--bootstrap-end-comment-->" value="-->"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
<artifact:pom file="${basedir}/dependencies.xml" id="pom"/>
|
2008-07-11 17:16:59 -04:00
|
|
|
<artifact:dependencies pathId="pom.pathid" filesetId="pom.fileset" verbose="${verbose}" useScope="compile">
|
2008-07-10 08:07:01 -04:00
|
|
|
<localRepository path="${maven.repo.local}"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
<pom refid="pom"/>
|
|
|
|
</artifact:dependencies>
|
2008-04-15 11:41:13 -04:00
|
|
|
<delete file="${basedir}/dependencies.xml"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
|
2008-04-15 11:41:13 -04:00
|
|
|
<!-- Pull the dependencies for Modello -->
|
2008-04-15 20:49:10 -04:00
|
|
|
<artifact:dependencies pathId="modello.pathid" filesetId="modello.fileset" verbose="${verbose}">
|
2009-02-21 03:26:24 -05:00
|
|
|
<localRepository path="${maven.repo.local}"/>
|
|
|
|
<dependency groupId="org.codehaus.modello" artifactId="modello-maven-plugin" version="${pom.properties.modelloVersion}"/>
|
2008-10-01 09:08:04 -04:00
|
|
|
</artifact:dependencies>
|
2009-02-17 16:46:38 -05:00
|
|
|
|
2008-10-01 09:08:04 -04:00
|
|
|
<!-- Pull the dependencies for the MetadataGenerator CLI -->
|
|
|
|
<artifact:dependencies pathId="pmdg.pathid" filesetId="pmdg.fileset" verbose="${verbose}">
|
2009-02-17 16:46:38 -05:00
|
|
|
<localRepository path="${maven.repo.local}"/>
|
2008-11-29 12:37:47 -05:00
|
|
|
<dependency groupId="org.codehaus.plexus" artifactId="plexus-component-metadata" version="${pom.properties.plexusVersion}"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
</artifact:dependencies>
|
|
|
|
|
2006-10-11 02:23:43 -04:00
|
|
|
</target>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2008-11-25 02:11:35 -05:00
|
|
|
<target name="process-classes" depends="pull" description="generates plexus component metadata.">
|
2008-11-22 17:26:16 -05:00
|
|
|
<mkdir dir="${basedir}/bootstrap/target"/>
|
|
|
|
<mkdir dir="${basedir}/bootstrap/target/classes"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
|
2008-11-22 17:26:16 -05:00
|
|
|
<path id="maven.classpath">
|
|
|
|
<pathelement location="bootstrap/target/classes"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
<path refid="sources"/>
|
2008-11-22 17:26:16 -05:00
|
|
|
<path refid="pom.pathid"/>
|
2008-11-25 02:11:35 -05:00
|
|
|
<path refid="pmdg.pathid"/>
|
2008-11-22 17:26:16 -05:00
|
|
|
</path>
|
2008-11-30 23:28:32 -05:00
|
|
|
|
2009-02-17 16:46:38 -05:00
|
|
|
<echo>Using plexus version ${pom.properties.plexusVersion}</echo>
|
2008-11-22 17:26:16 -05:00
|
|
|
<java fork="fork" classname="org.codehaus.plexus.metadata.PlexusMetadataGeneratorCli" failonerror="true">
|
|
|
|
<classpath refid="maven.classpath"/>
|
2008-11-30 21:49:21 -05:00
|
|
|
<!-- We need to generate component descriptors from the maven-artifact sources which use javadoc annotations. -->
|
2008-11-22 17:26:16 -05:00
|
|
|
<arg value="--source"/>
|
2008-11-30 21:49:21 -05:00
|
|
|
<arg value="${basedir}/maven-compat/src/main/java"/>
|
|
|
|
<!-- We have separated the artifact handlers and lifecycle mappings into a separate file. -->
|
|
|
|
<arg value="--descriptors"/>
|
|
|
|
<arg value="${basedir}/maven-core/src/main/resources/META-INF/plexus"/>
|
|
|
|
<!-- Search the classes for annotations that we've compiled. -->
|
2008-11-22 17:26:16 -05:00
|
|
|
<arg value="--classes"/>
|
|
|
|
<arg value="${basedir}/bootstrap/target/classes"/>
|
2008-11-30 21:49:21 -05:00
|
|
|
<!-- We'll make one big fat components descriptor. -->
|
2008-11-22 17:26:16 -05:00
|
|
|
<arg value="--output"/>
|
|
|
|
<arg value="${basedir}/bootstrap/target/classes/META-INF/plexus/components.xml"/>
|
|
|
|
</java>
|
2009-02-17 16:46:38 -05:00
|
|
|
</target>
|
|
|
|
|
2008-04-15 20:41:00 -04:00
|
|
|
<target name="generate-sources" depends="pull" description="generates Java sources from Modello mdo model files">
|
2006-10-11 12:44:55 -04:00
|
|
|
<mkdir dir="bootstrap/target"/>
|
|
|
|
<mkdir dir="bootstrap/target/generated-sources"/>
|
|
|
|
|
2006-10-11 02:23:43 -04:00
|
|
|
<macrodef name="modello-single-mode">
|
|
|
|
<attribute name="file"/>
|
|
|
|
<attribute name="mode"/>
|
|
|
|
<attribute name="version"/>
|
|
|
|
<sequential>
|
2006-12-06 19:17:53 -05:00
|
|
|
<java fork="fork" classname="org.codehaus.modello.ModelloCli" failonerror="true">
|
2008-04-15 11:41:13 -04:00
|
|
|
<classpath refid="modello.pathid"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
<arg file="@{file}"/> <!-- model file -->
|
|
|
|
<arg value="@{mode}"/> <!-- output type -->
|
|
|
|
<arg file="bootstrap/target/generated-sources"/> <!-- output directory -->
|
|
|
|
<arg value="@{version}"/> <!-- model version -->
|
|
|
|
<arg value="false"/> <!-- package with version -->
|
|
|
|
<arg value="true"/> <!-- use Java 5 -->
|
|
|
|
<arg value="UTF-8"/> <!-- encoding -->
|
2006-10-11 02:23:43 -04:00
|
|
|
</java>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2006-10-11 02:23:43 -04:00
|
|
|
<macrodef name="modello">
|
|
|
|
<attribute name="file"/>
|
|
|
|
<attribute name="version" default="1.0.0"/>
|
|
|
|
<sequential>
|
|
|
|
<echo taskname="modello" message="Generating sources for @{file}"/>
|
|
|
|
<modello-single-mode file="@{file}" version="@{version}" mode="java"/>
|
|
|
|
<modello-single-mode file="@{file}" version="@{version}" mode="xpp3-reader"/>
|
|
|
|
<modello-single-mode file="@{file}" version="@{version}" mode="xpp3-writer"/>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2007-01-22 14:24:50 -05:00
|
|
|
<modello file="maven-model/src/main/mdo/maven.mdo" version="4.0.0"/>
|
2007-09-05 20:46:41 -04:00
|
|
|
<modello file="maven-plugin-api/src/main/mdo/lifecycle.mdo"/>
|
2009-04-22 19:04:06 -04:00
|
|
|
<modello file="maven-model-builder/src/main/mdo/profiles.mdo"/>
|
2007-09-07 02:07:29 -04:00
|
|
|
<modello file="maven-core/src/main/mdo/settings.mdo"/>
|
2009-04-26 20:16:42 -04:00
|
|
|
<modello file="maven-toolchain/src/main/mdo/toolchains.mdo"/>
|
2008-11-27 17:32:16 -05:00
|
|
|
<modello file="maven-compat/src/main/mdo/metadata.mdo"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile-boot" depends="generate-sources" description="compiles the bootstrap sources">
|
|
|
|
<path id="sources">
|
|
|
|
<dirset dir=".">
|
2006-10-11 12:44:55 -04:00
|
|
|
<include name="bootstrap/target/generated-sources"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
<include name="*/src/main/*"/>
|
|
|
|
</dirset>
|
|
|
|
</path>
|
|
|
|
|
2006-10-11 12:44:55 -04:00
|
|
|
<mkdir dir="bootstrap/target/classes"/>
|
2008-11-30 16:36:30 -05:00
|
|
|
<javac destdir="bootstrap/target/classes" encoding="UTF-8" source="1.5" target="1.5" debug="true">
|
2006-10-11 02:23:43 -04:00
|
|
|
<src refid="sources"/>
|
2008-04-15 11:41:13 -04:00
|
|
|
<classpath refid="pom.pathid"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
</javac>
|
|
|
|
|
|
|
|
<path id="maven.classpath">
|
2006-10-11 12:44:55 -04:00
|
|
|
<pathelement location="bootstrap/target/classes"/>
|
2008-11-30 21:49:21 -05:00
|
|
|
<pathelement location="maven-compat/src/main/resources"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
<path refid="sources"/>
|
2008-04-15 11:41:13 -04:00
|
|
|
<path refid="pom.pathid"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
</path>
|
|
|
|
</target>
|
|
|
|
|
2008-11-25 02:11:35 -05:00
|
|
|
<target name="maven-compile" depends="compile-boot,process-classes" description="compiles Maven using the bootstrap Maven, skipping automated tests">
|
2006-10-11 02:23:43 -04:00
|
|
|
<java fork="true" classname="org.apache.maven.cli.MavenCli" failonerror="true">
|
|
|
|
<classpath refid="maven.classpath"/>
|
2009-03-05 13:58:03 -05:00
|
|
|
<arg value="${maven.debug}"/>
|
2006-10-31 14:38:37 -05:00
|
|
|
<arg value="-B"/>
|
2009-05-13 16:27:13 -04:00
|
|
|
<arg value="-X"/>
|
|
|
|
<arg value="-e"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
<arg value="clean"/>
|
2007-01-17 18:56:41 -05:00
|
|
|
<arg value="install"/>
|
2009-05-05 07:22:04 -04:00
|
|
|
<arg value="-Dmaven.test.skip=${maven.test.skip}"/>
|
2008-07-10 08:07:01 -04:00
|
|
|
<arg value="-Dmaven.repo.local=${maven.repo.local}"/>
|
2008-07-10 08:55:48 -04:00
|
|
|
<arg value="-Dsurefire.useFile=${surefire.useFile}"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
</java>
|
|
|
|
</target>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2009-02-17 16:46:38 -05:00
|
|
|
<target name="maven-assembly" depends="maven-compile" description="generates the Maven installation assembly using the bootstrap Maven">
|
2007-08-09 13:46:33 -04:00
|
|
|
<echo>
|
2009-02-17 16:46:38 -05:00
|
|
|
The new Maven distribution was created as part of the MAVEN-COMPILE step, above.
|
2007-08-09 13:46:33 -04:00
|
|
|
This goal just validates the presence of that distribution.
|
|
|
|
</echo>
|
2006-10-11 02:23:43 -04:00
|
|
|
<condition property="build.failed">
|
|
|
|
<not>
|
|
|
|
<available file="${maven.assembly}"/>
|
|
|
|
</not>
|
|
|
|
</condition>
|
2008-04-15 20:41:00 -04:00
|
|
|
<fail if="build.failed" message="Assembly task seemed to succeed, but couldn't find assembly file: ${maven.assembly}"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
</target>
|
2006-10-11 12:44:55 -04:00
|
|
|
|
2008-04-15 20:41:00 -04:00
|
|
|
<target name="extract-assembly" depends="init,maven-assembly" description="extracts the maven assembly into maven.home">
|
2006-12-06 19:17:53 -05:00
|
|
|
<echo>Extracting assembly to ${maven.home.dirname} ...</echo>
|
2008-07-11 17:32:54 -04:00
|
|
|
<!-- If we are starting from scratch make sure the directory is created -->
|
2009-01-13 13:18:03 -05:00
|
|
|
<delete dir="${maven.home.effective}"/>
|
|
|
|
<mkdir dir="${maven.home.effective}"/>
|
2006-10-11 02:23:43 -04:00
|
|
|
<unzip src="${maven.assembly}" dest="${maven.home.dirname}"/>
|
2006-10-11 18:58:27 -04:00
|
|
|
<chmod perm="+x">
|
2009-01-13 13:18:03 -05:00
|
|
|
<fileset dir="${maven.home.effective}/bin">
|
2006-10-11 18:58:27 -04:00
|
|
|
<include name="mvn"/>
|
|
|
|
</fileset>
|
|
|
|
</chmod>
|
2006-10-11 02:23:43 -04:00
|
|
|
</target>
|
2009-02-17 16:46:38 -05:00
|
|
|
|
2006-10-25 23:31:08 -04:00
|
|
|
<target name="all" depends="clean-bootstrap,init,extract-assembly"/>
|
2009-02-17 16:46:38 -05:00
|
|
|
|
2006-10-11 02:23:43 -04:00
|
|
|
</project>
|