mirror of https://github.com/apache/maven.git
missed build-mercury.xml when upgrading Modello to 1.0 in r745260
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@745971 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
73c0f41e3b
commit
45b99d20cf
|
@ -19,18 +19,18 @@ under the License.
|
|||
|
||||
<!-- START SNIPPET: ant-bootstrap
|
||||
|
||||
By default the bootstrap will use ~/.m2/repository as the integration repository but you can define the integration
|
||||
By default the bootstrap will use ~/.m2/repository as the integration repository but you can define the integration
|
||||
repository by specifying a property on the command line:
|
||||
|
||||
ant -Dmaven.repo.local=/my/integration/repository
|
||||
|
||||
Those familiar with Maven will note this is the same way the local repository can be set from the command-line.
|
||||
Those familiar with Maven will note this is the same way the local repository can be set from the command-line.
|
||||
This facilitates having a set of builds converge on the same repository for integration purposes.
|
||||
|
||||
END SNIPPET: ant-bootstrap -->
|
||||
|
||||
<project default="all" basedir="." xmlns:mercury="urn:mercury-ant-tasks">
|
||||
|
||||
|
||||
<property name="it.workdir.version" value="3.0.x"/>
|
||||
|
||||
<target name="initTaskDefs">
|
||||
|
@ -57,7 +57,7 @@ END SNIPPET: ant-bootstrap -->
|
|||
</target>
|
||||
|
||||
<target name="init" depends="isMavenHomeSet">
|
||||
<xmlproperty prefix="pom" file="pom.xml"/>
|
||||
<xmlproperty prefix="pom" file="pom.xml"/>
|
||||
<basename file="${maven.home}" property="maven.home.basename"/>
|
||||
<dirname file="${maven.home}" property="maven.home.dirname"/>
|
||||
<!-- Initialize properties -->
|
||||
|
@ -69,8 +69,8 @@ END SNIPPET: ant-bootstrap -->
|
|||
<property name="maven.repo.central" value="http://repository.sonatype.org/content/groups/public"/>
|
||||
<mercury:remote-repository location="${maven.repo.central}"/>
|
||||
-->
|
||||
|
||||
<property name="surefire.useFile" value="true"/>
|
||||
|
||||
<property name="surefire.useFile" value="true"/>
|
||||
<echo>maven.home = ${maven.home}</echo>
|
||||
</target>
|
||||
|
||||
|
@ -78,29 +78,29 @@ END SNIPPET: ant-bootstrap -->
|
|||
<delete dir="bootstrap"/>
|
||||
</target>
|
||||
|
||||
<target name="pull" depends="init" unless="skip.pull">
|
||||
<property name="verbose" value="false"/>
|
||||
<target name="pull" depends="init" unless="skip.pull">
|
||||
<property name="verbose" value="false"/>
|
||||
<!-- Pull the dependencies that Maven needs to build -->
|
||||
<copy file="pom.xml" tofile="dependencies.xml"/>
|
||||
<replace file="${basedir}/dependencies.xml" token="<!--start-->" value="<!--"/>
|
||||
<replace file="${basedir}/dependencies.xml" token="<!--end-->" value="-->"/>
|
||||
|
||||
<delete file="${basedir}/dependencies.xml"/>
|
||||
|
||||
|
||||
|
||||
|
||||
<mercury:local-repository location="${maven.repo.local}"/>
|
||||
<mercury:resolve-dependencies>
|
||||
<mercury:dependency id="org.codehaus.plexus:plexus-component-metadata:${pom.properties.plexusVersion}"/>
|
||||
<mercury:dependency id="org.apache.maven:maven:3.0-SNAPSHOT::pom" source="maven:pom.xml"/>
|
||||
<mercury:dependency id="org.codehaus.modello:modello-maven-plugin:${pom.properties.modelloVersion}"/>
|
||||
</mercury:resolve-dependencies>
|
||||
|
||||
|
||||
<!-- those are for debugging and example (named paths) only. Remove as needed -->
|
||||
<!--
|
||||
<mercury:resolve-dependencies pathid="plexus.classpath">
|
||||
<mercury:dependency id="org.codehaus.plexus:plexus-component-metadata:${pom.properties.plexusVersion}"/>
|
||||
</mercury:resolve-dependencies>
|
||||
|
||||
|
||||
<mercury:resolve-dependencies pathid="modello.classpath">
|
||||
<mercury:dependency id="org.codehaus.modello:modello-maven-plugin:${pom.properties.modelloVersion}"/>
|
||||
</mercury:resolve-dependencies>
|
||||
|
@ -119,12 +119,12 @@ END SNIPPET: ant-bootstrap -->
|
|||
<property name="cp.modello" refid="modello.classpath"/>
|
||||
<echo>cp.modello=${cp.modello}</echo>
|
||||
<echo>========================================================================</echo>
|
||||
-->
|
||||
<!-- Pull the dependencies for Modello
|
||||
-->
|
||||
<!-- Pull the dependencies for Modello
|
||||
<mercury:dependency groupId="org.codehaus.modello" artifactId="modello-maven-plugin" version="${pom.properties.modelloVersion}"/>
|
||||
</mercury:resolve-dependencies>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Pull the dependencies for the MetadataGenerator CLI
|
||||
<mercury:resolve-dependencies id="pmdg">
|
||||
<mercury:dependency groupId="org.codehaus.plexus" artifactId="plexus-component-metadata" version="${pom.properties.plexusVersion}"/>
|
||||
|
@ -135,14 +135,14 @@ END SNIPPET: ant-bootstrap -->
|
|||
<target name="process-classes" depends="pull" description="generates plexus component metadata.">
|
||||
<mkdir dir="${basedir}/bootstrap/target"/>
|
||||
<mkdir dir="${basedir}/bootstrap/target/classes"/>
|
||||
|
||||
|
||||
<path id="maven.classpath">
|
||||
<pathelement location="bootstrap/target/classes"/>
|
||||
<path refid="sources"/>
|
||||
<path refid="mercury.classpath"/>
|
||||
<path refid="sources"/>
|
||||
<path refid="mercury.classpath"/>
|
||||
</path>
|
||||
|
||||
<echo>Using plexus version ${pom.properties.plexusVersion}</echo>
|
||||
<echo>Using plexus version ${pom.properties.plexusVersion}</echo>
|
||||
<java fork="fork" classname="org.codehaus.plexus.metadata.PlexusMetadataGeneratorCli" failonerror="true">
|
||||
<classpath refid="maven.classpath"/>
|
||||
<!-- We need to generate component descriptors from the maven-artifact sources which use javadoc annotations. -->
|
||||
|
@ -158,8 +158,8 @@ END SNIPPET: ant-bootstrap -->
|
|||
<arg value="--output"/>
|
||||
<arg value="${basedir}/bootstrap/target/classes/META-INF/plexus/components.xml"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="generate-sources" depends="pull" description="generates Java sources from Modello mdo model files">
|
||||
<mkdir dir="bootstrap/target"/>
|
||||
<mkdir dir="bootstrap/target/generated-sources"/>
|
||||
|
@ -170,11 +170,13 @@ END SNIPPET: ant-bootstrap -->
|
|||
<attribute name="version"/>
|
||||
<sequential>
|
||||
<java fork="fork" classname="org.codehaus.modello.ModelloCli" failonerror="true" classpathref="mercury.classpath">
|
||||
<arg file="@{file}"/>
|
||||
<arg value="@{mode}"/>
|
||||
<arg file="bootstrap/target/generated-sources"/>
|
||||
<arg value="@{version}"/>
|
||||
<arg value="false"/>
|
||||
<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 -->
|
||||
</java>
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
@ -224,7 +226,7 @@ END SNIPPET: ant-bootstrap -->
|
|||
<target name="maven-compile" depends="compile-boot,process-classes" description="compiles Maven using the bootstrap Maven, skipping automated tests">
|
||||
<java fork="true" classname="org.apache.maven.cli.MavenCli" failonerror="true">
|
||||
<classpath refid="maven.classpath"/>
|
||||
<arg value="-e"/>
|
||||
<arg value="-e"/>
|
||||
<arg value="-B"/>
|
||||
<arg value="clean"/>
|
||||
<arg value="install"/>
|
||||
|
@ -233,9 +235,9 @@ END SNIPPET: ant-bootstrap -->
|
|||
</java>
|
||||
</target>
|
||||
|
||||
<target name="maven-assembly" depends="maven-compile" description="generates the Maven installation assembly using the bootstrap Maven">
|
||||
<target name="maven-assembly" depends="maven-compile" description="generates the Maven installation assembly using the bootstrap Maven">
|
||||
<echo>
|
||||
The new Maven distribution was created as part of the MAVEN-COMPILE step, above.
|
||||
The new Maven distribution was created as part of the MAVEN-COMPILE step, above.
|
||||
This goal just validates the presence of that distribution.
|
||||
</echo>
|
||||
<condition property="build.failed">
|
||||
|
@ -258,7 +260,7 @@ END SNIPPET: ant-bootstrap -->
|
|||
</fileset>
|
||||
</chmod>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="all" depends="clean-bootstrap,init,extract-assembly"/>
|
||||
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue