You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by sj...@apache.org on 2016/11/16 12:18:00 UTC

[2/3] brooklyn-server git commit: Exclude .mvn/jvm.config from rat checks

Exclude .mvn/jvm.config from rat checks

Also merge pluginManagement in the project configuration for rat-plugin


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/83e9e755
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/83e9e755
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/83e9e755

Branch: refs/heads/master
Commit: 83e9e755c259a9166d800bfa19ad600867467472
Parents: 3fae363
Author: Svetoslav Neykov <sv...@cloudsoftcorp.com>
Authored: Tue Nov 15 14:07:10 2016 +0200
Committer: Svetoslav Neykov <sv...@cloudsoftcorp.com>
Committed: Tue Nov 15 14:07:10 2016 +0200

----------------------------------------------------------------------
 parent/pom.xml | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/83e9e755/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index defb676..c19d44e 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -728,18 +728,6 @@
                     <groupId>org.apache.rat</groupId>
                     <artifactId>apache-rat-plugin</artifactId>
                     <version>0.11</version>
-                    <configuration>
-                        <excludes combine.children="append">
-                            <!-- Exclude sandbox because not part of distribution: not in tgz, and not uploaded to maven-central -->
-                            <exclude>sandbox/**</exclude>
-                            <!-- Exclude release because not part of distribution: not in tgz, and not uploaded to maven-central -->
-                            <exclude>release/**</exclude>
-                            <exclude>README.md</exclude>
-                            <!-- Exclude netbeans config files (not part of the project, but often on users' drives -->
-                            <exclude>**/nbactions.xml</exclude>
-                            <exclude>**/nb-configuration.xml</exclude>
-                        </excludes>
-                    </configuration>
                 </plugin>
 
                 <!-- This is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
@@ -1043,6 +1031,11 @@
                      so that the child pom entries replace the parent entries
                  -->
                 <excludes combine.children="append">
+                  <!-- Exclude sandbox because not part of distribution: not in tgz, and not uploaded to maven-central -->
+                  <exclude>sandbox/**</exclude>
+                  <!-- Exclude release because not part of distribution: not in tgz, and not uploaded to maven-central -->
+                  <exclude>release/**</exclude>
+                  <exclude>README.md</exclude>
                   <!-- git and IDE project files -->
                   <!-- see https://issues.apache.org/jira/browse/RAT-107 -->
                   <exclude>**/.git/**</exclude>
@@ -1056,9 +1049,13 @@
                   <exclude>**/*.log</exclude>
                   <exclude>**/brooklyn*.log.*</exclude>
                   <exclude>**/target/**</exclude>
+                  <!-- Exclude netbeans config files (not part of the project, but often on users' drives -->
+                  <exclude>**/nbactions.xml</exclude>
+                  <exclude>**/nb-configuration.xml</exclude>
                   <!-- files not requiring licence -->
                   <exclude>ignored/**</exclude>
                   <exclude>LICENSE.md</exclude>
+                  <exclude>.mvn/jvm.config</exclude>
                   <exclude>**/src/main/license/**</exclude>
                   <exclude>**/src/test/license/**</exclude>
                   <exclude>**/MANIFEST.MF</exclude>