mirror of https://github.com/apache/maven.git
Create artifact directory as the Get task doesn't create them
NOTE: accidently commited other files too. Only build.xml was supposed to be committed. - it0074/pom.xml: leave as is; it fixes a <depedencies> section; - maven-plugin-tools-java/pom.xml was fixed by jason at revision 462919; - ProjectSorter.java is fixed in revision 463922; git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@462868 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
05d91510ad
commit
f286c9fbc6
|
@ -273,6 +273,8 @@ need different versions of modello. -->
|
|||
<contains string="${version}" substring="SNAPSHOT"/>
|
||||
</condition>
|
||||
|
||||
<mkdir dir="${maven.repo.local}/${orgpath}/${version}"/>
|
||||
|
||||
<!-- get the metadata file -->
|
||||
<get src="${repo}/${orgpath}/${version}/maven-metadata.xml"
|
||||
dest="${maven.repo.local}/${orgpath}/${version}/bootstrap-maven-metadata.xml" usetimestamp="true"
|
||||
|
|
|
@ -6,9 +6,11 @@
|
|||
<version>1.0</version>
|
||||
|
||||
<dependencies>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
<dependency>
|
||||
<groupId>qdox</groupId>
|
||||
<artifactId>qdox</artifactId>
|
||||
<version>1.5</version>
|
||||
<version>1.6-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
|
@ -116,7 +116,7 @@ public class ProjectSorter
|
|||
dag.addEdge( id, parentId );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
List buildPlugins = project.getBuildPlugins();
|
||||
if ( buildPlugins != null )
|
||||
{
|
||||
|
@ -144,7 +144,7 @@ public class ProjectSorter
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
*/
|
||||
for ( Iterator j = project.getBuildExtensions().iterator(); j.hasNext(); )
|
||||
{
|
||||
Extension extension = (Extension) j.next();
|
||||
|
|
Loading…
Reference in New Issue