mirror of https://github.com/apache/maven.git
Commenting out most of the make-assembly target, since it's now done as part of the normal build...there's an echo statement detailing this now.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@564303 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b2e2644f83
commit
a15f547664
12
build.xml
12
build.xml
|
@ -287,6 +287,13 @@ under the License.
|
||||||
|
|
||||||
<target name="maven-assembly" depends="maven-compile"
|
<target name="maven-assembly" depends="maven-compile"
|
||||||
description="generates the Maven installation assembly using the bootstrap Maven">
|
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.
|
||||||
|
This goal just validates the presence of that distribution.
|
||||||
|
</echo>
|
||||||
|
|
||||||
|
<!--
|
||||||
<echo>
|
<echo>
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
@ -329,12 +336,11 @@ load ${bootstrapDir}/target/classes
|
||||||
</classpath>
|
</classpath>
|
||||||
<sysproperty key="classworlds.conf" value="${bootstrapDir}/m2.conf"/>
|
<sysproperty key="classworlds.conf" value="${bootstrapDir}/m2.conf"/>
|
||||||
<sysproperty key="bootstrapDir" value="${bootstrapDir}"/>
|
<sysproperty key="bootstrapDir" value="${bootstrapDir}"/>
|
||||||
<!--
|
|
||||||
<arg value="-X"/>
|
|
||||||
-->
|
|
||||||
<arg value="-e"/>
|
<arg value="-e"/>
|
||||||
<arg line="${maven.goals}"/>
|
<arg line="${maven.goals}"/>
|
||||||
</java>
|
</java>
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
<property name="maven.assembly" location="maven-embedder/target/${maven.home.basename.expected}-bin.zip"/>
|
<property name="maven.assembly" location="maven-embedder/target/${maven.home.basename.expected}-bin.zip"/>
|
||||||
<condition property="build.failed">
|
<condition property="build.failed">
|
||||||
|
|
Loading…
Reference in New Issue