Author: mbenson
Date: Tue Feb 11 19:14:00 2014
New Revision: 1567303

URL: http://svn.apache.org/r1567303
Log:
suppress inapplicable test-sources jars' creation

Modified:
    commons/proper/weaver/trunk/ant/lib/pom.xml
    commons/proper/weaver/trunk/build-tools/pom.xml
    commons/proper/weaver/trunk/maven-plugin/pom.xml
    commons/proper/weaver/trunk/modules/privilizer/api/pom.xml
    commons/proper/weaver/trunk/modules/privilizer/weaver/pom.xml

Modified: commons/proper/weaver/trunk/ant/lib/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/weaver/trunk/ant/lib/pom.xml?rev=1567303&r1=1567302&r2=1567303&view=diff
==============================================================================
--- commons/proper/weaver/trunk/ant/lib/pom.xml (original)
+++ commons/proper/weaver/trunk/ant/lib/pom.xml Tue Feb 11 19:14:00 2014
@@ -71,6 +71,19 @@ under the License.
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-test-sources</id>
+            <phase>never-ever</phase>
+            <goals>
+              <goal>test-jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
         <version>2.1</version>
         <executions>

Modified: commons/proper/weaver/trunk/build-tools/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/weaver/trunk/build-tools/pom.xml?rev=1567303&r1=1567302&r2=1567303&view=diff
==============================================================================
--- commons/proper/weaver/trunk/build-tools/pom.xml (original)
+++ commons/proper/weaver/trunk/build-tools/pom.xml Tue Feb 11 19:14:00 2014
@@ -27,4 +27,14 @@ under the License.
   <artifactId>commons-weaver-build-tools</artifactId>
   <name>Apache Commons Weaver Build Tools</name>
   <description>Provide common setup, from 
http://maven.apache.org/plugins/maven-checkstyle-plugin/examples/multi-module-config.html</description>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <configuration>
+          <skipSource>true</skipSource>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Modified: commons/proper/weaver/trunk/maven-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/weaver/trunk/maven-plugin/pom.xml?rev=1567303&r1=1567302&r2=1567303&view=diff
==============================================================================
--- commons/proper/weaver/trunk/maven-plugin/pom.xml (original)
+++ commons/proper/weaver/trunk/maven-plugin/pom.xml Tue Feb 11 19:14:00 2014
@@ -99,6 +99,19 @@ under the License.
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-test-sources</id>
+            <phase>never-ever</phase>
+            <goals>
+              <goal>test-jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 

Modified: commons/proper/weaver/trunk/modules/privilizer/api/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/weaver/trunk/modules/privilizer/api/pom.xml?rev=1567303&r1=1567302&r2=1567303&view=diff
==============================================================================
--- commons/proper/weaver/trunk/modules/privilizer/api/pom.xml (original)
+++ commons/proper/weaver/trunk/modules/privilizer/api/pom.xml Tue Feb 11 
19:14:00 2014
@@ -28,4 +28,21 @@ under the License.
   <artifactId>commons-weaver-privilizer-api</artifactId>
   <name>Apache Commons Weaver Privilizer API</name>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-test-sources</id>
+            <phase>never-ever</phase>
+            <goals>
+              <goal>test-jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Modified: commons/proper/weaver/trunk/modules/privilizer/weaver/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/weaver/trunk/modules/privilizer/weaver/pom.xml?rev=1567303&r1=1567302&r2=1567303&view=diff
==============================================================================
--- commons/proper/weaver/trunk/modules/privilizer/weaver/pom.xml (original)
+++ commons/proper/weaver/trunk/modules/privilizer/weaver/pom.xml Tue Feb 11 
19:14:00 2014
@@ -85,4 +85,22 @@ under the License.
       </dependencies>
     </profile>
   </profiles>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-test-sources</id>
+            <phase>never-ever</phase>
+            <goals>
+              <goal>test-jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>


Reply via email to