Do not check Maven-Eclipse file from RAT checks.
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1697526 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
08f48e8b4d
commit
6b68265094
|
@ -72,6 +72,27 @@
|
|||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>${hc.rat.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>.externalToolBuilders/**</exclude>
|
||||
<exclude>maven-eclipse.xml</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
|
|
|
@ -60,6 +60,27 @@
|
|||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>${hc.rat.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>.externalToolBuilders/**</exclude>
|
||||
<exclude>maven-eclipse.xml</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
|
|
5
pom.xml
5
pom.xml
|
@ -77,6 +77,7 @@
|
|||
<mockito.version>1.8.5</mockito.version>
|
||||
<jna.version>4.1.0</jna.version>
|
||||
<hc.stylecheck.version>1</hc.stylecheck.version>
|
||||
<hc.rat.version>0.11</hc.rat.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
|
@ -359,7 +360,7 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>0.11</version>
|
||||
<version>${hc.rat.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
|
@ -373,7 +374,7 @@
|
|||
<exclude>src/docbkx/resources/**</exclude>
|
||||
<exclude>src/test/resources/*.truststore</exclude>
|
||||
<exclude>.checkstyle</exclude>
|
||||
<exclude>.externalToolBuilders</exclude>
|
||||
<exclude>.externalToolBuilders/**</exclude>
|
||||
<exclude>maven-eclipse.xml</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
|
|
Loading…
Reference in New Issue