You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cs...@apache.org on 2020/06/24 16:54:34 UTC

[activemq] branch master updated: AMQ-7504 - Run apache-rat:check when apache-release profile is activated

This is an automated email from the ASF dual-hosted git repository.

cshannon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/master by this push:
     new 763b3c3  AMQ-7504 - Run apache-rat:check when apache-release profile is activated
763b3c3 is described below

commit 763b3c337f08f23a0b4ee03d9ec58a70d6c56d2a
Author: Christopher L. Shannon (cshannon) <ch...@gmail.com>
AuthorDate: Wed Jun 24 12:54:56 2020 -0400

    AMQ-7504 - Run apache-rat:check when apache-release profile is activated
    
    This will verify licenses when doing a release
---
 pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3070370..7f04edd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>