You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by dj...@apache.org on 2008/03/21 23:13:12 UTC

svn commit: r639887 - /directory/project/branches/bigbang/pom.xml

Author: djencks
Date: Fri Mar 21 15:13:09 2008
New Revision: 639887

URL: http://svn.apache.org/viewvc?rev=639887&view=rev
Log:
Update to latest maven-remote-resources-plugin and resource bundle.  Add rat and tools-maven-plugin to help check stuff

Modified:
    directory/project/branches/bigbang/pom.xml

Modified: directory/project/branches/bigbang/pom.xml
URL: http://svn.apache.org/viewvc/directory/project/branches/bigbang/pom.xml?rev=639887&r1=639886&r2=639887&view=diff
==============================================================================
--- directory/project/branches/bigbang/pom.xml (original)
+++ directory/project/branches/bigbang/pom.xml Fri Mar 21 15:13:09 2008
@@ -269,7 +269,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-remote-resources-plugin</artifactId>
-          <version>1.0-beta-2</version>
+          <version>1.0</version>
           <executions>
             <execution>
               <goals>
@@ -277,10 +277,8 @@
               </goals>
               <configuration>
                 <resourceBundles>
-                  <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+                  <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
                 </resourceBundles>
-                <!-- hack to share the same corrections among all modules -->
-                <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
               </configuration>
             </execution>
           </executions>
@@ -293,14 +291,63 @@
             <argLine>-Xmx1024m</argLine>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-stage-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>
+            <excludeSubProjects>false</excludeSubProjects>
+          </configuration>
+        </plugin>
+
+        <plugin>
+            <groupId>org.apache.geronimo.genesis.plugins</groupId>
+            <artifactId>tools-maven-plugin</artifactId>
+            <version>1.4</version>
+        </plugin>
       </plugins>
     </pluginManagement>
 
     <plugins>
       <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+          <groupId>org.apache.geronimo.genesis.plugins</groupId>
+          <artifactId>tools-maven-plugin</artifactId>
+          <executions>
+              <execution>
+                  <id>verify-legal-files</id>
+                  <phase>verify</phase>
+                  <goals>
+                      <goal>verify-legal-files</goal>
+                  </goals>
+                  <configuration>
+                      <!-- Fail the build if no legal files were found -->
+                      <strict>true</strict>
+                  </configuration>
+              </execution>
+          </executions>
+      </plugin>
+
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-remote-resources-plugin</artifactId>
       </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-stage-plugin</artifactId>
+      </plugin>
+
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>