You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2012/02/21 16:20:38 UTC

svn commit: r1291858 - /servicemix/smx4/bundles/trunk/jung-api-2.0.1/pom.xml

Author: jbonofre
Date: Tue Feb 21 15:20:38 2012
New Revision: 1291858

URL: http://svn.apache.org/viewvc?rev=1291858&view=rev
Log:
Fix the jung-api bundle POM

Modified:
    servicemix/smx4/bundles/trunk/jung-api-2.0.1/pom.xml

Modified: servicemix/smx4/bundles/trunk/jung-api-2.0.1/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/jung-api-2.0.1/pom.xml?rev=1291858&r1=1291857&r2=1291858&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/jung-api-2.0.1/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/jung-api-2.0.1/pom.xml Tue Feb 21 15:20:38 2012
@@ -24,7 +24,7 @@
     <parent>
         <groupId>org.apache.servicemix.bundles</groupId>
         <artifactId>bundles-pom</artifactId>
-        <version>10-SNAPSHOT</version>
+        <version>8</version>
         <relativePath>../bundles-pom/pom.xml</relativePath>
     </parent>
 
@@ -39,9 +39,9 @@
         <pkgGroupId>net.sf.jung</pkgGroupId>
         <pkgArtifactId>jung-api</pkgArtifactId>
         <pkgVersion>2.0.1</pkgVersion>
-        <servicemix.osgi.export.pkg>
+        <servicemix.osgi.export>
             edu.uci.ics.jung*;version="${project.version}";-noimport:=true
-        </servicemix.osgi.export.pkg>
+        </servicemix.osgi.export>
         <servicemix.osgi.import.pkg>
             org.apache.commons.collections15;version:="[4,5)",
             *
@@ -55,6 +55,15 @@
             <version>${pkgVersion}</version>
             <optional>true</optional>
         </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
     </dependencies>
 
     <build>
@@ -62,7 +71,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-shade-plugin</artifactId>
-                <version>1.4</version>
                 <executions>
                     <execution>
                         <phase>package</phase>
@@ -91,4 +99,5 @@
             </plugin>
         </plugins>
     </build>
+
 </project>