GUACAMOLE-210: Add Apache RAT plugin to guacamole-auth-openid build.

This commit is contained in:
Michael Jumper
2017-02-21 11:24:33 -08:00
parent 254639f6e9
commit 6d46d5cfb8

View File

@@ -73,6 +73,32 @@
</executions>
</plugin>
<!-- Verify format using Apache RAT -->
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.12</version>
<configuration>
<excludes>
<exclude>**/*.json</exclude>
<exclude>src/licenses/**/*</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>