2005-09-24 22:00:04 -04:00
|
|
|
<project>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-11-04 12:28:45 -05:00
|
|
|
<version>2.0</version>
|
2005-09-24 22:00:04 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-embedder</artifactId>
|
|
|
|
<name>Maven Embedder</name>
|
2005-11-04 13:31:41 -05:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2005-11-05 08:37:39 -05:00
|
|
|
<properties>
|
|
|
|
<mavenVersion>2.0.1-SNAPSHOT</mavenVersion>
|
|
|
|
</properties>
|
2005-09-24 22:00:04 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2005-09-26 11:33:13 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2005-09-24 22:00:04 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2005-09-25 11:28:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
2005-10-16 20:43:01 -04:00
|
|
|
<version>${mavenVersion}</version>
|
2005-11-04 12:30:23 -05:00
|
|
|
</dependency>
|
2005-09-24 22:00:04 -04:00
|
|
|
</dependencies>
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clover-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2005-11-04 13:29:37 -05:00
|
|
|
</project>
|