You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2012/06/16 00:41:25 UTC

svn commit: r1350823 - /commons/proper/functor/trunk/pom.xml

Author: mbenson
Date: Fri Jun 15 22:41:24 2012
New Revision: 1350823

URL: http://svn.apache.org/viewvc?rev=1350823&view=rev
Log:
always generate source jar before having shade generate/update one; upgrade shade to 1.6 with note RE 1.7

Modified:
    commons/proper/functor/trunk/pom.xml

Modified: commons/proper/functor/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/pom.xml?rev=1350823&r1=1350822&r2=1350823&view=diff
==============================================================================
--- commons/proper/functor/trunk/pom.xml (original)
+++ commons/proper/functor/trunk/pom.xml Fri Jun 15 22:41:24 2012
@@ -140,8 +140,22 @@
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+          <id>attach-sources</id>
+          <goals>
+            <goal>jar</goal>
+          </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>1.5</version>
+        <!-- v1.7 is somehow not compatible with commons-parent 25; see
+             http://svn.apache.org/viewvc?diff_format=h&view=revision&revision=1350822 -->
+        <version>1.6</version>
         <configuration>
           <minimizeJar>true</minimizeJar>
           <createDependencyReducedPom>true</createDependencyReducedPom>