AMQ-7504 - Run apache-rat:check when apache-release profile is activated

This will verify licenses when doing a release
This commit is contained in:
Christopher L. Shannon (cshannon) 2020-06-24 12:54:56 -04:00
parent 4ed2ba22a9
commit 763b3c337f
1 changed files with 12 additions and 0 deletions

12
pom.xml
View File

@ -1613,6 +1613,18 @@
<test>false</test>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>