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 15:12:31 UTC

svn commit: r713728 - /felix/sandbox/donsez/monitor.jobcmd/pom.xml

Author: donsez
Date: Thu Nov 13 06:12:30 2008
New Revision: 713728

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

Modified:
    felix/sandbox/donsez/monitor.jobcmd/pom.xml

Modified: felix/sandbox/donsez/monitor.jobcmd/pom.xml
URL: http://svn.apache.org/viewvc/felix/sandbox/donsez/monitor.jobcmd/pom.xml?rev=713728&r1=713727&r2=713728&view=diff
==============================================================================
--- felix/sandbox/donsez/monitor.jobcmd/pom.xml (original)
+++ felix/sandbox/donsez/monitor.jobcmd/pom.xml Thu Nov 13 06:12:30 2008
@@ -22,39 +22,44 @@
 		<repositoryLocation>http://www.apache.org/~donsez/dev/osgi/</repositoryLocation>
 		<description>provides a shell command to play with the Monitor Admin service.</description>
 	</properties>  
-
+<!--
   <parent>
-    <groupId>org.apache.felix</groupId>
-    <artifactId>felix</artifactId>
-    <version>0.9.0-incubator-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 Monitor Admin Command</name>
+  
   <artifactId>org.apache.felix.monitor.jobcmd</artifactId>
+  <groupId>org.apache.felix.sandbox</groupId>
+  <version>0.1.0-SNAPSHOT</version>
+
   <description>${description}</description>
 
   <dependencies>
     <dependency>
-      <groupId>${pom.groupId}</groupId>
+      <groupId>org.apache.felix</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>1.0.0</version>
     </dependency>
     <dependency>
-      <groupId>${pom.groupId}</groupId>
+      <groupId>org.apache.felix</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>1.0.0</version>
     </dependency>
     <dependency>
-      <groupId>${pom.groupId}</groupId>
-      <artifactId>org.apache.felix.monitor</artifactId>
-      <version>${pom.version}</version>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.shell</artifactId>
+      <version>1.0.0</version>
     </dependency>
     <dependency>
-      <groupId>${pom.groupId}</groupId>
-      <artifactId>org.apache.felix.shell</artifactId>
-      <version>${pom.version}</version>
+      <artifactId>org.apache.felix.sandbox.monitor</artifactId>
+      <groupId>org.apache.felix.sandbox</groupId>
+      <version>0.1.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
   <build>
@@ -70,51 +75,18 @@
           	
             <Export-Service>org.osgi.service.event.EventHandler,org.apache.felix.shell.Command</Export-Service>
 
-			<Import-Service>org.osgi.service.monitor.MonitorAdmin,org.osgi.service.event.EventAdmin</Import-Service>
+            <!-- <Import-Service>org.osgi.service.monitor.MonitorAdmin,org.osgi.service.event.EventAdmin</Import-Service> -->
 
             <Private-Package>${pom.artifactId}.*</Private-Package>
             <Import-Package>*</Import-Package>
-            <!--
-            	org.osgi.framework;specification-version=1.3.0,
-				 org.osgi.util.tracker;specification-version=1.3.0,
-				 org.osgi.service.monitor;specification-version=1.0.0,
-				 org.osgi.service.event;specification-version=1.0.0,
-				 org.apache.felix.shell
-			-->
             
             <Bundle-Activator>${pom.artifactId}.MonitorJobCommand</Bundle-Activator>
 
-            <!--
-            <Bundle-DocURL>${repositoryLocation}${pom.artifactId}/index.html</Bundle-DocURL>
-            <Bundle-Url>${repositoryLocation}${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</Bundle-Url>
-            <Bundle-Source>${repositoryLocation}${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</Bundle-Source>
-			-->
-			
-            <!--
-            <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-            <Bundle-Description>${description}</Bundle-Description>
-            <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
-			-->
+
 
           </instructions>
         </configuration>
       </plugin>
     </plugins>
   </build>
-  <!--
-  <repositories>
-    <repository>
-      <id>apache.m2.incubator</id>
-      <name>Apache M2 Incubator Repository</name>
-      <url>http://people.apache.org/repo/m2-incubating-repository/</url>
-    </repository>
-  </repositories>
-  <pluginRepositories>
-    <pluginRepository>
-      <id>apache.m2.incubator</id>
-      <name>Apache M2 Incubator Repository</name>
-      <url>http://people.apache.org/repo/m2-incubating-repository/</url>
-    </pluginRepository>
-  </pluginRepositories>
-  -->
 </project>