2005-07-21 09:58:42 -04: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-05-31 12:24:34 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>maven-profile</artifactId>
|
|
|
|
<name>Maven Profile Model</name>
|
|
|
|
<dependencies>
|
2005-06-13 00:21:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
2005-05-31 12:24:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
2005-06-13 00:21:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-06-13 00:21:27 -04:00
|
|
|
</dependency>
|
2005-08-16 12:31:02 -04:00
|
|
|
<!-- dependency>
|
2005-06-13 00:21:27 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-project</artifactId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-08-16 12:31:02 -04:00
|
|
|
</dependency -->
|
2005-05-31 12:24:34 -04:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2005-06-23 02:03:10 -04:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<goals>
|
|
|
|
<goal>
|
|
|
|
<id>xpp3-writer</id>
|
|
|
|
</goal>
|
|
|
|
<goal>
|
|
|
|
<id>java</id>
|
|
|
|
</goal>
|
|
|
|
<goal>
|
|
|
|
<id>xpp3-reader</id>
|
|
|
|
</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<model>profiles.mdo</model>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|