Added apache-rat maven plugin

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1626736 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2014-09-22 11:37:30 +00:00
parent 0739770c15
commit 49069049f2
1 changed files with 18 additions and 0 deletions

18
pom.xml
View File

@ -377,6 +377,24 @@
<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>
</execution>
</executions>
<configuration>
<excludes>
<exclude>src/docbkx/resources/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>