NIFI-3103: This closes #1272. Exclude localhost.cert from RAT check.

This commit is contained in:
Koji Kawamura 2016-11-26 08:24:14 +09:00 committed by joewitt
parent 1b2b9f136d
commit f4f60c3610
1 changed files with 13 additions and 0 deletions

View File

@ -48,4 +48,17 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>src/test/resources/certs/localhost.crt</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>