You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2013/06/03 12:46:16 UTC

[35/50] git commit: Add RAT check to the release profile

Add RAT check to the release profile

- Will ensure that the license header checks continue to pass.

- Noticed a strange "bug" in that I need to set <inherited>true</inherited> in the profile which then
   infects the non-inherited configuration outside the profile to all child projects. Not critical in this
   case, but none the less an unexpected consequence. Most likely would be resolved by switching
   to executions but that would require more duplication.


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

Branch: refs/heads/slf4j-log4j2
Commit: bfcf03d42c37bce5bf16a1ab689073109d191bf7
Parents: 348f716
Author: Stephen Connolly <st...@gmail.com>
Authored: Tue May 28 10:42:47 2013 +0100
Committer: Stephen Connolly <st...@gmail.com>
Committed: Tue May 28 10:42:47 2013 +0100

----------------------------------------------------------------------
 pom.xml |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/bfcf03d4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 51b32ce..b552ae7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -501,6 +501,19 @@
               </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>