You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2020/01/23 08:14:39 UTC

[maven-doxia-book-renderer] 29/34: rat is already run on each build since maven-parent 25: now configuration enhancements are to be put in pluginManagement

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

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia-book-renderer.git

commit a3a31ddb20617e0a3910b4f9038e6f55e17a157b
Author: Herve Boutemy <hb...@apache.org>
AuthorDate: Sun Apr 10 22:51:30 2016 +0000

    rat is already run on each build since maven-parent 25: now configuration enhancements are to be put in pluginManagement
    
    git-svn-id: https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk@1738484 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 32 ++++++++++++++------------------
 1 file changed, 14 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index abd22bf..44c650f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -131,6 +131,20 @@ under the License.
   </dependencies>
 
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <configuration>
+            <excludes combine.children="append">
+              <exclude>src/test/resources/expected/doc-book/plexus-user-guide.xml</exclude>
+              <exclude>src/test/resources/book-1/section-*.apt</exclude>
+            </excludes>            
+          </configuration>
+        </plugin>      
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin>
         <groupId>org.codehaus.modello</groupId>
@@ -171,24 +185,6 @@ under the License.
           </systemPropertyVariables>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <configuration>
-          <excludes combine.children="append">
-            <exclude>src/test/resources/expected/doc-book/plexus-user-guide.xml</exclude>
-            <exclude>src/test/resources/book-1/section-*.apt</exclude>
-          </excludes>            
-        </configuration>
-        <executions>
-          <execution>
-            <id>check</id>
-            <goals>
-              <goal>check</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>      
     </plugins>
   </build>