2005-07-21 13:58:42 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2005-03-15 07:33:58 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-03-08 06:06:22 +00:00
|
|
|
<parent>
|
2005-04-05 16:30:55 +00:00
|
|
|
<artifactId>maven</artifactId>
|
2005-03-23 06:52:55 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-06-27 15:29:14 +00:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-03-08 06:06:22 +00:00
|
|
|
</parent>
|
2005-03-16 06:29:35 +00:00
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
<name>Maven Local Settings Model</name>
|
2005-04-04 14:35:06 +00:00
|
|
|
<dependencies>
|
2005-06-13 04:21:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2005-06-23 02:31:28 +00:00
|
|
|
<version>1.0-alpha-4</version>
|
2005-06-13 04:21:27 +00:00
|
|
|
</dependency>
|
2005-04-04 14:35:06 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2005-07-21 02:17:16 +00:00
|
|
|
<version>1.0.1</version>
|
2005-04-04 14:35:06 +00:00
|
|
|
</dependency>
|
2005-06-13 04:21:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2005-06-27 15:29:14 +00:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-06-13 04:21:27 +00:00
|
|
|
</dependency>
|
2005-04-04 14:35:06 +00:00
|
|
|
</dependencies>
|
2005-03-10 01:35:25 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2005-05-04 14:41:33 +00:00
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2005-06-23 06:03:10 +00:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-03-17 01:34:24 +00:00
|
|
|
<goals>
|
|
|
|
<goal>
|
|
|
|
<id>xpp3-writer</id>
|
|
|
|
</goal>
|
|
|
|
<goal>
|
|
|
|
<id>java</id>
|
|
|
|
</goal>
|
|
|
|
<goal>
|
|
|
|
<id>xpp3-reader</id>
|
|
|
|
</goal>
|
|
|
|
</goals>
|
2005-03-10 01:35:25 +00:00
|
|
|
<configuration>
|
2005-03-16 01:42:22 +00:00
|
|
|
<version>1.0.0</version>
|
2005-03-16 06:29:35 +00:00
|
|
|
<model>settings.mdo</model>
|
2005-03-10 01:35:25 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-04-05 04:11:03 +00:00
|
|
|
</project>
|