You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by hu...@apache.org on 2011/10/27 18:27:42 UTC

svn commit: r1189845 - /aries/branches/oct-2011-release/blueprint/blueprint-bundle/pom.xml

Author: hughesj
Date: Thu Oct 27 16:27:42 2011
New Revision: 1189845

URL: http://svn.apache.org/viewvc?rev=1189845&view=rev
Log:
Need to declare dependency on slf4j so the version ranges appear in the Import-Package header for the slf4j. Also back to 0.4-SNAPSHOT to prep for re-rolling the release

Modified:
    aries/branches/oct-2011-release/blueprint/blueprint-bundle/pom.xml

Modified: aries/branches/oct-2011-release/blueprint/blueprint-bundle/pom.xml
URL: http://svn.apache.org/viewvc/aries/branches/oct-2011-release/blueprint/blueprint-bundle/pom.xml?rev=1189845&r1=1189844&r2=1189845&view=diff
==============================================================================
--- aries/branches/oct-2011-release/blueprint/blueprint-bundle/pom.xml (original)
+++ aries/branches/oct-2011-release/blueprint/blueprint-bundle/pom.xml Thu Oct 27 16:27:42 2011
@@ -27,7 +27,7 @@
     <artifactId>org.apache.aries.blueprint</artifactId>
     <packaging>bundle</packaging>
     <name>Apache Aries Blueprint Bundle</name>
-    <version>0.4</version>
+    <version>0.4-SNAPSHOT</version>
     <description>
         This bundle contains the standalone implementation along with the API.
         It's composed of the blueprint-api, blueprint-core and blueprint-cm modules.
@@ -159,6 +159,11 @@
             <scope>provided</scope>
             <version>0.3</version>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
 
     </dependencies>