mirror of https://github.com/apache/maven.git
58 lines
1.5 KiB
XML
58 lines
1.5 KiB
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>maven</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-assemble-plugin</artifactId>
|
|
<packaging>plugin</packaging>
|
|
<name>Maven Assemble Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-core</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-modello-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<configuration>
|
|
<model>src/main/mdo/descriptor.mdo</model>
|
|
<version>1.0.0</version>
|
|
</configuration>
|
|
<goals>
|
|
<goal>
|
|
<id>xpp3-reader</id>
|
|
</goal>
|
|
<goal>
|
|
<id>xpp3-writer</id>
|
|
</goal>
|
|
<goal>
|
|
<id>java</id>
|
|
</goal>
|
|
</goals>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assemble-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<configuration><descriptor>assembly.xml</descriptor></configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</model>
|