GUACAMOLE-119: Add Apache RAT validation to build.

This commit is contained in:
Michael Jumper
2016-11-12 17:55:37 -08:00
parent d598ce18b8
commit 27bb5632f5
13 changed files with 312 additions and 0 deletions

27
pom.xml
View File

@@ -65,6 +65,33 @@
</plugin>
<!-- Verify format using Apache RAT -->
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.12</version>
<configuration>
<excludes>
<exclude>.dockerignore</exclude>
<exclude>CONTRIBUTING</exclude>
<exclude>**/README.md</exclude>
</excludes>
</configuration>
<!-- Bind RAT to validate phase -->
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>