mirror of https://github.com/apache/maven.git
o moving core deps into top-level pom.xml to be shared by all the
component builds. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
368ae57a6b
commit
dd4fc3384f
|
@ -8,7 +8,6 @@
|
||||||
</parent>
|
</parent>
|
||||||
<name>Maven MBoot</name>
|
<name>Maven MBoot</name>
|
||||||
<groupId>maven</groupId>
|
<groupId>maven</groupId>
|
||||||
<id>maven-mboot</id>
|
|
||||||
<artifactId>maven-mboot</artifactId>
|
<artifactId>maven-mboot</artifactId>
|
||||||
<version>2.0-SNAPSHOT</version>
|
<version>2.0-SNAPSHOT</version>
|
||||||
<description>Tool used to bootstrap m2.</description>
|
<description>Tool used to bootstrap m2.</description>
|
||||||
|
|
|
@ -11,11 +11,4 @@
|
||||||
<artifactId>maven-meeper</artifactId>
|
<artifactId>maven-meeper</artifactId>
|
||||||
<version>0.1-SNAPSHOT</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
<description></description>
|
<description></description>
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>maven</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>2.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -8,16 +8,8 @@
|
||||||
</parent>
|
</parent>
|
||||||
<name>Maven Model</name>
|
<name>Maven Model</name>
|
||||||
<groupId>maven</groupId>
|
<groupId>maven</groupId>
|
||||||
<id>maven-model</id>
|
|
||||||
<artifactId>maven-model</artifactId>
|
<artifactId>maven-model</artifactId>
|
||||||
<version>2.0-SNAPSHOT</version>
|
<version>2.0-SNAPSHOT</version>
|
||||||
<description>Maven Model</description>
|
<description>Maven Model</description>
|
||||||
<shortDescription>Maven Model</shortDescription>
|
<shortDescription>Maven Model</shortDescription>
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<artifactId>xpp3</artifactId>
|
|
||||||
<groupId>xpp3</groupId>
|
|
||||||
<version>1.1.3.3</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -17,6 +17,9 @@ package org.apache.maven.plugin.jar;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import org.codehaus.plexus.util.FileUtils;
|
import org.codehaus.plexus.util.FileUtils;
|
||||||
|
import org.apache.maven.plugin.AbstractPlugin;
|
||||||
|
import org.apache.maven.plugin.PluginExecutionRequest;
|
||||||
|
import org.apache.maven.plugin.PluginExecutionResponse;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
|
|
28
pom.xml
28
pom.xml
|
@ -55,6 +55,34 @@
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>plexus</groupId>
|
||||||
|
<artifactId>plexus</artifactId>
|
||||||
|
<version>0.14-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>xstream</groupId>
|
||||||
|
<artifactId>xstream</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>classworlds</groupId>
|
||||||
|
<artifactId>classworlds</artifactId>
|
||||||
|
<version>1.1-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>xpp3</groupId>
|
||||||
|
<artifactId>xpp3</artifactId>
|
||||||
|
<version>1.1.3.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<nagEmailAddress>turbine-maven-dev@jakarta.apache.org</nagEmailAddress>
|
<nagEmailAddress>turbine-maven-dev@jakarta.apache.org</nagEmailAddress>
|
||||||
<sourceDirectory>src/main/java</sourceDirectory>
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||||||
|
|
Loading…
Reference in New Issue