GUACAMOLE-204: Remove unnecessary LICENSE and README.md files, and add Apache RAT back to pom.xml.

This commit is contained in:
Nick Couchman
2017-02-10 09:17:54 -05:00
committed by Nick Couchman
parent fe6d8e2975
commit 44acc959dc
3 changed files with 26 additions and 230 deletions

View File

@@ -95,6 +95,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>