You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2014/02/15 19:15:37 UTC

git commit: Turn on rat by default so that we can move toward any standard build passing being a viable release candidate. Anything important that may block a release should be run as a standard part of the release. It's an anti-pattern, and very annoyin

Repository: maven
Updated Branches:
  refs/heads/master 969a35dd4 -> fe4751605


Turn on rat by default so that we can move toward any standard build passing being a viable release candidate. Anything important that may block a release
should be run as a standard part of the release. It's an anti-pattern, and very annoying, to have something required only be run during the release process.


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/fe475160
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/fe475160
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/fe475160

Branch: refs/heads/master
Commit: fe4751605c21199a3569c7f0051380412732e662
Parents: 969a35d
Author: Jason van Zyl <ja...@tesla.io>
Authored: Sat Feb 15 13:14:16 2014 -0500
Committer: Jason van Zyl <ja...@tesla.io>
Committed: Sat Feb 15 13:14:16 2014 -0500

----------------------------------------------------------------------
 pom.xml | 24 +++++++++---------------
 1 file changed, 9 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/fe475160/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e7db6ec..45fd0b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -459,6 +459,14 @@
               <exclude>**/*.odg</exclude>
             </excludes>
           </configuration>
+          <executions>
+            <execution>
+              <id>check</id>
+              <goals>
+                <goal>check</goal>
+              </goals>
+            </execution>
+          </executions>          
         </plugin>
       </plugins>
     </pluginManagement>
@@ -500,8 +508,7 @@
       </plugin>
       <plugin>
         <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <inherited>false</inherited>
+        <artifactId>apache-rat-plugin</artifactId>        
         <configuration>
           <excludes combine.children="append">
             <exclude>bootstrap/**</exclude>
@@ -541,19 +548,6 @@
               </execution>
             </executions>
           </plugin>
-          <plugin>
-            <groupId>org.apache.rat</groupId>
-            <artifactId>apache-rat-plugin</artifactId>
-            <inherited>true</inherited>
-            <executions>
-              <execution>
-                <id>check</id>
-                <goals>
-                  <goal>check</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
         </plugins>
       </build>
     </profile>