GUACAMOLE-1298: Automatically generate LICENSE and NOTICE files.

This commit is contained in:
Michael Jumper
2021-03-27 14:48:27 -07:00
parent b2845ebc4b
commit 6c8a699faa
285 changed files with 5187 additions and 7637 deletions

View File

@@ -43,6 +43,18 @@
<build>
<plugins>
<!-- Automatically generate LICENSE and NOTICE -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-license-files</id>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
<!-- Assembly plugin - for easy distribution -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
@@ -71,12 +83,6 @@
<artifactId>apache-rat-plugin</artifactId>
<version>0.12</version>
<configuration>
<excludes>
<exclude>src/licenses/**/*</exclude>
</excludes>
</configuration>
<!-- Bind RAT to validate phase -->
<executions>
<execution>