2005-09-15 22:50:12 -04:00
|
|
|
<project>
|
2005-05-31 12:24:34 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-10-14 03:15:39 -04:00
|
|
|
<version>2.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
</parent>
|
2005-09-15 22:50:12 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-05-31 12:24:34 -04:00
|
|
|
<artifactId>maven-profile</artifactId>
|
|
|
|
<name>Maven Profile Model</name>
|
2005-10-14 03:15:39 -04:00
|
|
|
<version>2.0</version>
|
2005-05-31 12:24:34 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2005-09-13 07:41:52 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<model>profiles.mdo</model>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2005-05-31 12:24:34 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-09-15 22:50:12 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2005-10-14 03:15:39 -04:00
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2005-09-15 22:50:12 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2005-10-02 20:54:01 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-09-15 22:50:12 -04:00
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-10-14 03:15:39 -04:00
|
|
|
</project>
|