You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by do...@apache.org on 2008/11/13 14:19:51 UTC

svn commit: r713718 - /felix/sandbox/donsez/eventadmin.cmd/pom.xml

Author: donsez
Date: Thu Nov 13 05:19:50 2008
New Revision: 713718

URL: http://svn.apache.org/viewvc?rev=713718&view=rev
Log:
change dependencies versions in pom.xml

Modified:
    felix/sandbox/donsez/eventadmin.cmd/pom.xml

Modified: felix/sandbox/donsez/eventadmin.cmd/pom.xml
URL: http://svn.apache.org/viewvc/felix/sandbox/donsez/eventadmin.cmd/pom.xml?rev=713718&r1=713717&r2=713718&view=diff
==============================================================================
--- felix/sandbox/donsez/eventadmin.cmd/pom.xml (original)
+++ felix/sandbox/donsez/eventadmin.cmd/pom.xml Thu Nov 13 05:19:50 2008
@@ -21,42 +21,41 @@
 		<repositoryLocation>http://www-adele.imag.fr/users/Didier.Donsez/dev/felix/sandbox/</repositoryLocation>
 	</properties>  
 
+<!--
   <parent>
-    <groupId>org.apache.felix</groupId>
-    <artifactId>felix</artifactId>
-    <version>1.1.0-SNAPSHOT</version>
+    <groupId>org.apache.felix.sandbox</groupId>
+    <artifactId>sandbox</artifactId>
+    <version>0.1.0-SNAPSHOT</version>
   </parent>
+-->
 
   <modelVersion>4.0.0</modelVersion>
   <packaging>bundle</packaging>
   <name>Apache Felix EventAdmin Command</name>
+
   <artifactId>org.apache.felix.sandbox.eventadmin.cmd</artifactId>
+  <groupId>org.apache.felix.sandbox</groupId>
+  <version>0.1.0-SNAPSHOT</version>
+  
   <description>provides a command to use and test the Event Admin service.</description>
     
   <dependencies>
 
     <dependency>
-      <groupId>${pom.groupId}</groupId>
+      <groupId>org.apache.felix</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
-      <scope>provided</scope>
+      <version>1.0.0</version>
     </dependency>
-
     <dependency>
-      <groupId>${pom.groupId}</groupId>
+      <groupId>org.apache.felix</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>0.9.0-SNAPSHOT</version>
-      <scope>provided</scope>
+      <version>1.0.0</version>
     </dependency>
-
     <dependency>
-      <groupId>${pom.groupId}</groupId>
+      <groupId>org.apache.felix</groupId>
       <artifactId>org.apache.felix.shell</artifactId>
-      <version>${pom.version}</version>
-      <scope>provided</scope>
+      <version>1.0.0</version>
     </dependency>
-
-
   </dependencies>
 
   <build>
@@ -68,7 +67,7 @@
         <configuration>
           <instructions>
             <Export-Service>org.apache.felix.shell.Command,org.osgi.service.eventadmin.EventHandler</Export-Service>
-            <Import-Service>org.osgi.service.eventadmin.EventAdmin</Import-Service>
+            <!-- <Import-Service>org.osgi.service.eventadmin.EventAdmin</Import-Service> -->
             <Private-Package>org.apache.felix.sandbox.eventadmin.cmd.*,org.apache.felix.sandbox.eventadmin.util.*</Private-Package>
             <Import-Package>*</Import-Package>
 		    <Bundle-Activator>${pom.artifactId}.EventAdminCommand</Bundle-Activator>