Author: rdonkin
Date: Mon Jun 16 13:39:48 2008
New Revision: 668294
URL: http://svn.apache.org/viewvc?rev=668294&view=rev
Log:
Fixed parent pom version and added more reports
Modified:
james/mailet/api/trunk/pom.xml
Modified: james/mailet/api/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/mailet/api/trunk/pom.xml?rev=668294&r1=668293&r2=668294&view=diff
==============================================================================
--- james/mailet/api/trunk/pom.xml (original)
+++ james/mailet/api/trunk/pom.xml Mon Jun 16 13:39:48 2008
@@ -39,7 +39,7 @@
<parent>
<groupId>org.apache.james</groupId>
<artifactId>james-project</artifactId>
- <version>1.1</version>
+ <version>1.2</version>
<relativePath>../james-project/project/pom.xml</relativePath>
</parent>
<url>http://james.apache.org/mailet</url>
@@ -79,6 +79,13 @@
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
</dependency>
</dependencies>
@@ -164,12 +171,43 @@
<reporting>
<plugins>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jxr-maven-plugin</artifactId>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.4.3</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>2.4.3</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.4</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <version>2.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>2.0-beta-6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rat-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <configuration>
+ <excludes>
+ <exclude>NOTICE.base</exclude>
+ <exclude>LICENSE.apache</exclude>
+ <exclude>release.properties</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ <version>2.2</version>
</plugin>
</plugins>
</reporting>