| <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"> |
| <parent> |
| <artifactId>maven-plugins</artifactId> |
| <groupId>org.apache.maven.plugins</groupId> |
| <version>1</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <packaging>maven-plugin</packaging> |
| <name>Maven Assembly Plugin</name> |
| <version>2.2-SNAPSHOT</version> |
| <prerequisites> |
| <maven>2.0.4</maven> |
| </prerequisites> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.modello</groupId> |
| <artifactId>modello-maven-plugin</artifactId> |
| <version>1.0-alpha-8</version> |
| <executions> |
| <execution> |
| <id>descriptor</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>xpp3-reader</goal> |
| <goal>xpp3-writer</goal> |
| <goal>java</goal> |
| <goal>xsd</goal> |
| </goals> |
| <configuration> |
| <model>src/main/mdo/descriptor.mdo</model> |
| <version>1.0.0</version> |
| </configuration> |
| </execution> |
| <execution> |
| <id>component</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>xpp3-reader</goal> |
| <goal>java</goal> |
| <goal>xsd</goal> |
| </goals> |
| <configuration> |
| <model>src/main/mdo/component.mdo</model> |
| <version>1.0.0</version> |
| </configuration> |
| </execution> |
| <execution> |
| <id>descriptor-site</id> |
| <phase>pre-site</phase> |
| <goals> |
| <goal>xdoc</goal> |
| <goal>xsd</goal> |
| </goals> |
| <configuration> |
| <model>src/main/mdo/descriptor.mdo</model> |
| <version>1.0.0</version> |
| </configuration> |
| </execution> |
| <execution> |
| <id>component-site</id> |
| <phase>pre-site</phase> |
| <goals> |
| <goal>xdoc</goal> |
| <goal>xsd</goal> |
| </goals> |
| <configuration> |
| <model>src/main/mdo/component.mdo</model> |
| <version>1.0.0</version> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <exclude>**/BasicAbstractAssemblyMojoFeaturesTest*</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>2.0.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-project</artifactId> |
| <version>2.0.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-core</artifactId> |
| <version>2.0.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-archiver</artifactId> |
| <version>2.0.4</version> |
| <!-- version>2.1-SNAPSHOT</version --> |
| <!-- XXX: A bug in Maven 2.0.4 means this will block necessary dependencies coming through the testing harness --> |
| <exclusions> |
| <exclusion> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-archiver</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-archiver</artifactId> |
| <version>1.0-alpha-6</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>1.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-artifact</artifactId> |
| <version>2.0.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>file-management</artifactId> |
| <version>1.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-plugin-testing-harness</artifactId> |
| <version>1.0-beta-1</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>1.2_Java1.3</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |