You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2016/04/29 16:24:10 UTC

svn commit: r1741637 - /sling/trunk/testing/pom.xml

Author: bdelacretaz
Date: Fri Apr 29 14:24:10 2016
New Revision: 1741637

URL: http://svn.apache.org/viewvc?rev=1741637&view=rev
Log:
SLING-5703 - add new modules and fix "No such file or directory" error from rat plugin

Modified:
    sling/trunk/testing/pom.xml

Modified: sling/trunk/testing/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/testing/pom.xml?rev=1741637&r1=1741636&r2=1741637&view=diff
==============================================================================
--- sling/trunk/testing/pom.xml (original)
+++ sling/trunk/testing/pom.xml Fri Apr 29 14:24:10 2016
@@ -45,10 +45,46 @@
     <url>http://svn.apache.org/viewvc/sling/trunk/testing</url>
   </scm>
 
+  <build>
+      <pluginManagement>
+          <plugins>
+              <plugin>
+                  <groupId>org.apache.rat</groupId>
+                  <artifactId>apache-rat-plugin</artifactId>
+                  <configuration>
+                      <excludes combine.children="append">
+                          <exclude>derby.log</exclude>
+                          <exclude>sling/**</exclude>
+                      </excludes>
+                  </configuration>
+              </plugin>
+          </plugins>
+      </pluginManagement>
+      <plugins>
+          <plugin>
+              <artifactId>maven-clean-plugin</artifactId>
+              <configuration>
+                  <filesets>
+                      <fileset>
+                          <directory>${basedir}</directory>
+                          <includes>
+                              <!-- sling folder is the workdir of the executable jar that we test -->
+                              <include>sling/**</include>
+                          </includes>
+                      </fileset>
+                  </filesets>
+              </configuration>
+          </plugin>
+      </plugins>
+  </build>
+  
   <modules>
     <module>tools</module>
+    <module>http/clients</module>
     <module>hamcrest</module>
+    <module>serversetup</module>
     <module>junit/core</module>
+    <module>junit/rules</module>
     <module>junit/scriptable</module>
     <module>junit/healthcheck</module>
     <module>junit/remote</module>