Author: bago
Date: Sat May 10 03:31:34 2008
New Revision: 655041
URL: http://svn.apache.org/viewvc?rev=655041&view=rev
Log:
Added jdk 1.4 "restriction" for the compiler plugin.
Added rat plugin to automatically check the license headers.
Modified:
james/jsieve/trunk/pom.xml
Modified: james/jsieve/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/jsieve/trunk/pom.xml?rev=655041&r1=655040&r2=655041&view=diff
==============================================================================
--- james/jsieve/trunk/pom.xml (original)
+++ james/jsieve/trunk/pom.xml Sat May 10 03:31:34 2008
@@ -137,6 +137,14 @@
<plugins>
<plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <optimize>true</optimize>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
<executions>
@@ -209,6 +217,19 @@
</descriptorRefs>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rat-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
@@ -241,24 +262,39 @@
<plugin>
<artifactId>maven-site-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rat-maven-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>NOTICE.base</exclude>
+ <exclude>LICENSE.apache</exclude>
+ <exclude>src/site/resources/rfc2234.txt</exclude>
+ <exclude>src/site/resources/rfc2244.txt</exclude>
+ <exclude>src/site/resources/rfc2298.txt</exclude>
+ <exclude>src/site/resources/rfc3028.txt</exclude>
+ <exclude>stage/oro/poms/oro-2.0.8.pom</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</reporting>
- <mailingLists>
- <mailingList>
+ <mailingLists>
+ <mailingList>
<name>Apache James User</name>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<post>[EMAIL PROTECTED]</post>
<archive>http://mail-archives.apache.org/mod_mbox/james-server-user/</archive>
- </mailingList>
- <mailingList>
- <name>Apache James Developer</name>
- <subscribe>[EMAIL PROTECTED]</subscribe>
- <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
- <post>[email protected]</post>
-
<archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
- </mailingList>
+ </mailingList>
+ <mailingList>
+ <name>Apache James Developer</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
+ </mailingList>
</mailingLists>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]