mirror of https://github.com/apache/maven.git
86 lines
2.4 KiB
XML
86 lines
2.4 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<name>Maven Model</name>
|
|
<version>2.0.1-SNAPSHOT</version>
|
|
<description>Maven Model</description>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<version>1.0-alpha-7-SNAPSHOT</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>xpp3-writer</goal>
|
|
<goal>java</goal>
|
|
<goal>xpp3-reader</goal>
|
|
<goal>xsd</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<version>4.0.0</version>
|
|
<model>maven.mdo</model>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<profiles>
|
|
<profile>
|
|
<id>all-models</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<version>1.0-alpha-7-SNAPSHOT</version>
|
|
<executions>
|
|
<execution>
|
|
<id>v3</id>
|
|
<goals>
|
|
<goal>xpp3-writer</goal>
|
|
<goal>java</goal>
|
|
<goal>xpp3-reader</goal>
|
|
<goal>xsd</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>3.0.0</version>
|
|
<packageWithVersion>true</packageWithVersion>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<classifier>all</classifier>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|