Author: bentmann
Date: Wed Jan 5 18:28:00 2011
New Revision: 1055569
URL: http://svn.apache.org/viewvc?rev=1055569&view=rev
Log:
o Enhanced bootstrap to enable minimal self identification
Modified:
maven/maven-3/trunk/build.xml
Modified: maven/maven-3/trunk/build.xml
URL:
http://svn.apache.org/viewvc/maven/maven-3/trunk/build.xml?rev=1055569&r1=1055568&r2=1055569&view=diff
==============================================================================
--- maven/maven-3/trunk/build.xml (original)
+++ maven/maven-3/trunk/build.xml Wed Jan 5 18:28:00 2011
@@ -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=".">