You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2009/04/25 10:00:08 UTC

svn commit: r768495 - /myfaces/tobago/trunk/pom.xml

Author: bommel
Date: Sat Apr 25 08:00:08 2009
New Revision: 768495

URL: http://svn.apache.org/viewvc?rev=768495&view=rev
Log:
updated findbugs-plugin enforcer-plugin
update configuration of rat plugin
added ianal plugin

Modified:
    myfaces/tobago/trunk/pom.xml

Modified: myfaces/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/pom.xml?rev=768495&r1=768494&r2=768495&view=diff
==============================================================================
--- myfaces/tobago/trunk/pom.xml (original)
+++ myfaces/tobago/trunk/pom.xml Sat Apr 25 08:00:08 2009
@@ -316,7 +316,7 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
-        <version>1.2</version>
+        <version>2.0.1</version>
         <configuration>
           <threshold>Low</threshold>
           <effort>Max</effort>
@@ -345,7 +345,20 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>rat-maven-plugin</artifactId>
-        <version>1.0-alpha-3</version>
+        <configuration>
+          <excludes>
+            <exclude>**/javax.faces.lifecycle.LifecycleFactory</exclude>
+            <exclude>**/*.log</exclude>
+            <exclude>**/*.txt</exclude>
+            <exclude>**/target/**/*</exclude>
+            <exclude>**/blank.html</exclude>
+            <exclude>${basedir}/example/**/*</exclude>
+            <exclude>release.properties</exclude>
+            <exclude>${basedir}/*.iml</exclude>
+            <exclude>${basedir}/*.ipr</exclude>
+            <exclude>${basedir}/*.iws</exclude>
+          </excludes>
+        </configuration>
       </plugin>
 
       <plugin>
@@ -520,7 +533,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-enforcer-plugin</artifactId>
-        <version>1.0-alpha-4</version>
+        <version>1.0-beta-1</version>
         <executions>
           <execution>
             <id>enforce</id>
@@ -562,6 +575,54 @@
           </execution>
         </executions>
       </plugin>-->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>ianal-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>verify-legal-files</goal>
+            </goals>
+            <configuration>
+              <!-- Fail the build if any artifacts are missing legal files -->
+              <strict>true</strict>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <!--plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+
+      </plugin-->
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+              </resourceBundles>
+              <properties>
+                <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
     </plugins>
     <pluginManagement>
       <plugins>
@@ -742,6 +803,30 @@
           <artifactId>maven-taglib-plugin</artifactId>
           <version>2.3.1</version>
         </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>ianal-maven-plugin</artifactId>
+          <version>1.0-alpha-1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>rat-maven-plugin</artifactId>
+          <version>1.0-alpha-3</version>
+          <configuration>
+            <excludes>
+              <exclude>**/javax.faces.lifecycle.LifecycleFactory</exclude>
+              <exclude>**/*.log</exclude>
+              <exclude>**/*.txt</exclude>
+              <exclude>**/target/**/*</exclude>
+              <exclude>**/blank.html</exclude>
+              <exclude>${basedir}/example/**/*</exclude>
+              <exclude>release.properties</exclude>
+              <exclude>${basedir}/*.iml</exclude>
+              <exclude>${basedir}/*.ipr</exclude>
+              <exclude>${basedir}/*.iws</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -857,7 +942,7 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-enforcer-plugin</artifactId>
-            <version>1.0-alpha-4</version>
+            <version>1.0-beta-1</version>
             <executions>
               <execution>
                 <id>enforce-java</id>