mirror of https://github.com/apache/maven.git
o Enhanced bootstrap to enable minimal self identification
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1055569 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f455bcef5c
commit
c2a60c08ab
12
build.xml
12
build.xml
|
@ -217,6 +217,18 @@ Do you want to continue?</input>
|
|||
<classpath refid="pom.pathid" />
|
||||
</javac>
|
||||
|
||||
<copy todir="bootstrap/target/classes" encoding="ISO-8859-1">
|
||||
<fileset dir="maven-core/src/main/resources">
|
||||
<include name="**/build.properties" />
|
||||
</fileset>
|
||||
<filterset begintoken="${" endtoken="}">
|
||||
<filter token="project.version" value="${xmlPom.project.version}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
<echo file="bootstrap/target/classes/META-INF/maven/org.apache.maven/maven-core/pom.properties" encoding="ISO-8859-1">
|
||||
version = ${xmlPom.project.version}
|
||||
</echo>
|
||||
|
||||
<path id="maven.classpath">
|
||||
<pathelement location="bootstrap/target/classes" />
|
||||
<dirset dir=".">
|
||||
|
|
Loading…
Reference in New Issue