You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2017/05/09 20:02:59 UTC

[30/34] httpcomponents-core git commit: Added Apache RAT plugin

Added Apache RAT plugin

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.3.x@1632766 13f79535-47bb-0310-9956-ffa450edef68


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

Branch: refs/heads/4.3.x
Commit: a5e563b01a35bbf25da456d415bc6e1b46aaedab
Parents: feefebf
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Sat Oct 18 11:38:38 2014 +0000
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Sat Oct 18 11:38:38 2014 +0000

----------------------------------------------------------------------
 pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/a5e563b0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 91d220c..c864098 100644
--- a/pom.xml
+++ b/pom.xml
@@ -300,6 +300,28 @@
           <comparisonVersion>${api.comparison.version}</comparisonVersion>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.11</version>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+            <configuration>
+              <excludes>
+                <exclude>NOTICE.*</exclude>
+                <exclude>LICENSE.*</exclude>
+                <exclude>README.*</exclude>
+                <exclude>**/.*</exclude>
+                <exclude>.*/**/*</exclude>
+              </excludes>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>