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:
Jason van Zyl 2004-06-10 20:27:50 +00:00
parent 368ae57a6b
commit dd4fc3384f
5 changed files with 31 additions and 16 deletions

View File

@ -8,7 +8,6 @@
</parent>
<name>Maven MBoot</name>
<groupId>maven</groupId>
<id>maven-mboot</id>
<artifactId>maven-mboot</artifactId>
<version>2.0-SNAPSHOT</version>
<description>Tool used to bootstrap m2.</description>

View File

@ -11,11 +11,4 @@
<artifactId>maven-meeper</artifactId>
<version>0.1-SNAPSHOT</version>
<description></description>
<dependencies>
<dependency>
<groupId>maven</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

View File

@ -8,16 +8,8 @@
</parent>
<name>Maven Model</name>
<groupId>maven</groupId>
<id>maven-model</id>
<artifactId>maven-model</artifactId>
<version>2.0-SNAPSHOT</version>
<description>Maven Model</description>
<shortDescription>Maven Model</shortDescription>
<dependencies>
<dependency>
<artifactId>xpp3</artifactId>
<groupId>xpp3</groupId>
<version>1.1.3.3</version>
</dependency>
</dependencies>
</project>

View File

@ -17,6 +17,9 @@
*/
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.FileInputStream;

28
pom.xml
View File

@ -55,6 +55,34 @@
</developer>
</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>
<nagEmailAddress>turbine-maven-dev@jakarta.apache.org</nagEmailAddress>
<sourceDirectory>src/main/java</sourceDirectory>