You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ju...@apache.org on 2017/05/02 13:39:57 UTC

svn commit: r1793493 - /sling/trunk/bundles/extensions/models/impl/pom.xml

Author: justin
Date: Tue May  2 13:39:57 2017
New Revision: 1793493

URL: http://svn.apache.org/viewvc?rev=1793493&view=rev
Log:
SLING-6818 - only attach the sources jar generated by the shade plugin

Modified:
    sling/trunk/bundles/extensions/models/impl/pom.xml

Modified: sling/trunk/bundles/extensions/models/impl/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/models/impl/pom.xml?rev=1793493&r1=1793492&r2=1793493&view=diff
==============================================================================
--- sling/trunk/bundles/extensions/models/impl/pom.xml (original)
+++ sling/trunk/bundles/extensions/models/impl/pom.xml Tue May  2 13:39:57 2017
@@ -119,13 +119,20 @@
                     </excludes>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <configuration>
+                    <attach>false</attach>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <dependencies>
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.models.api</artifactId>
-            <version>1.3.5-SNAPSHOT</version>
+            <version>1.3.4</version>
             <scope>provided</scope>
         </dependency>
         <dependency>