2005-09-25 02:00:04 +00:00
|
|
|
<project>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-11-04 17:28:45 +00:00
|
|
|
<version>2.0</version>
|
2005-09-25 02:00:04 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-embedder</artifactId>
|
|
|
|
<name>Maven Embedder</name>
|
2005-11-04 18:31:41 +00:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2005-11-05 13:37:39 +00:00
|
|
|
<properties>
|
|
|
|
<mavenVersion>2.0.1-SNAPSHOT</mavenVersion>
|
|
|
|
</properties>
|
2005-09-25 02:00:04 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2005-09-26 15:33:13 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2005-09-25 02:00:04 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2005-09-25 15:28:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
2005-10-17 00:43:01 +00:00
|
|
|
<version>${mavenVersion}</version>
|
2005-11-04 17:30:23 +00:00
|
|
|
</dependency>
|
2005-09-25 02:00:04 +00: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 18:29:37 +00:00
|
|
|
</project>
|