You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by ol...@apache.org on 2012/08/08 23:20:04 UTC

svn commit: r1370977 - /incubator/directmemory/trunk/directmemory-common/pom.xml

Author: olamy
Date: Wed Aug  8 21:20:03 2012
New Revision: 1370977

URL: http://svn.apache.org/viewvc?rev=1370977&view=rev
Log:
fix osgi metadatas

Modified:
    incubator/directmemory/trunk/directmemory-common/pom.xml

Modified: incubator/directmemory/trunk/directmemory-common/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/directmemory-common/pom.xml?rev=1370977&r1=1370976&r2=1370977&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-common/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-common/pom.xml Wed Aug  8 21:20:03 2012
@@ -36,6 +36,35 @@ under the License.
     DirectMemory.
   </description>
 
+  <properties>
+    <osgi.import>
+      org.slf4j*,
+      org.yaml.snakeyaml*;version="[1.10,1.11)"
+    </osgi.import>
+    <osgi.export>org.apache.directmemory.conf*;version="${project.version}</osgi.export>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.yaml</groupId>
+      <artifactId>snakeyaml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
   <build>
     <pluginManagement>
       <plugins>
@@ -69,25 +98,4 @@ under the License.
     </pluginManagement>
   </build>
 
-  <dependencies>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.yaml</groupId>
-      <artifactId>snakeyaml</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-simple</artifactId>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
 </project>