You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/06/04 12:55:18 UTC

[sling-org-apache-sling-app-cms] branch master updated: Put the plugin in the wrong spot in the POM

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

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git


The following commit(s) were added to refs/heads/master by this push:
     new 5fb91f8  Put the plugin in the wrong spot in the POM
5fb91f8 is described below

commit 5fb91f8b78c8771fc1044088ca3380d0f54b040c
Author: Dan Klco <dk...@apache.org>
AuthorDate: Tue Jun 4 08:55:07 2019 -0400

    Put the plugin in the wrong spot in the POM
---
 transformer/pom.xml | 48 ++++++++++++++++++++++++------------------------
 1 file changed, 24 insertions(+), 24 deletions(-)

diff --git a/transformer/pom.xml b/transformer/pom.xml
index f83d3fa..0a64ec3 100644
--- a/transformer/pom.xml
+++ b/transformer/pom.xml
@@ -49,6 +49,30 @@
                     <user>${sling.username}</user>
                     <password>${sling.password}</password>
                 </configuration>
+            </plugin>          
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!-- Used by maven-remote-resources-plugin -->
+                        <exclude>src/main/appended-resources/META-INF/*</exclude>
+                        <!-- Generated by maven-remote-resources-plugin -->
+                        <exclude>velocity.log</exclude>
+                        <!-- don't check anything in target -->
+                        <exclude>target/*</exclude>
+                        <!-- for some reason Rat doesn't seem to pick up that PPTs are binary -->
+                        <exclude>src/test/resources/*.ppt</exclude>
+                    </excludes>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>
@@ -69,30 +93,6 @@
                                 </goals>
                             </execution>
                         </executions>
-                    </plugin>            
-                    <plugin>
-                        <groupId>org.apache.rat</groupId>
-                        <artifactId>apache-rat-plugin</artifactId>
-                        <configuration>
-                            <excludes>
-                                <!-- Used by maven-remote-resources-plugin -->
-                                <exclude>src/main/appended-resources/META-INF/*</exclude>
-                                <!-- Generated by maven-remote-resources-plugin -->
-                                <exclude>velocity.log</exclude>
-                                <!-- don't check anything in target -->
-                                <exclude>target/*</exclude>
-                                <!-- for some reason Rat doesn't seem to pick up that PPTs are binary -->
-                                <exclude>src/test/resources/Sling.ppt</exclude>
-                            </excludes>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <phase>verify</phase>
-                                <goals>
-                                    <goal>check</goal>
-                                </goals>
-                            </execution>
-                        </executions>
                     </plugin>
                 </plugins>
             </build>