mirror of https://github.com/apache/maven.git
61 lines
1.7 KiB
XML
Executable File
61 lines
1.7 KiB
XML
Executable File
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Assembly Plugin</name>
|
|
<version>2.0-beta-2-SNAPSHOT</version>
|
|
<developers>
|
|
<developer>
|
|
<id>vsiveton</id>
|
|
<name>Vincent Siveton</name>
|
|
<email>vincent.siveton@gmail.com</email>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
</developers>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<version>RELEASE</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>xpp3-reader</goal>
|
|
<goal>xpp3-writer</goal>
|
|
<goal>java</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<model>src/main/mdo/descriptor.mdo</model>
|
|
<version>1.0.0</version>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-project</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-archiver</artifactId>
|
|
<version>1.0-alpha-2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-beta-1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |