You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2015/09/06 14:56:04 UTC

svn commit: r1701479 - /webservices/woden/trunk/java/pom.xml

Author: veithen
Date: Sun Sep  6 12:56:03 2015
New Revision: 1701479

URL: http://svn.apache.org/r1701479
Log:
Move apache-rat-plugin to the apache-release profile.

Modified:
    webservices/woden/trunk/java/pom.xml

Modified: webservices/woden/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/pom.xml?rev=1701479&r1=1701478&r2=1701479&view=diff
==============================================================================
--- webservices/woden/trunk/java/pom.xml (original)
+++ webservices/woden/trunk/java/pom.xml Sun Sep  6 12:56:03 2015
@@ -159,14 +159,6 @@
                     <groupId>org.apache.rat</groupId>
                     <artifactId>apache-rat-plugin</artifactId>
                     <version>0.11</version>
-                    <configuration>
-                        <excludes>
-                            <exclude>legal/**</exclude>
-                            <exclude>src/site/markdown/release-notes/**</exclude>
-                            <exclude>**/META-INF/MANIFEST.MF</exclude>
-                            <exclude>**/about-this-package</exclude>
-                        </excludes>
-                    </configuration>
                 </plugin>
                 <plugin>
                     <artifactId>maven-release-plugin</artifactId>
@@ -180,19 +172,6 @@
         </pluginManagement>
         <plugins>
             <plugin>
-                <groupId>org.apache.rat</groupId>
-                <artifactId>apache-rat-plugin</artifactId>
-                <version>0.11</version>
-                <executions>
-                    <execution>
-                        <phase>verify</phase>
-                        <goals>
-                            <goal>check</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
@@ -264,6 +243,26 @@
                             </execution>
                         </executions>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.rat</groupId>
+                        <artifactId>apache-rat-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                                <configuration>
+                                    <excludes>
+                                        <exclude>legal/**</exclude>
+                                        <exclude>src/site/markdown/release-notes/**</exclude>
+                                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                                        <exclude>**/about-this-package</exclude>
+                                    </excludes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
                 </plugins>
             </build>
         </profile>