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:13:09 UTC

svn commit: r713729 - /felix/sandbox/donsez/monitor.sample.memorymonitor/pom.xml

Author: donsez
Date: Thu Nov 13 06:13:08 2008
New Revision: 713729

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

Modified:
    felix/sandbox/donsez/monitor.sample.memorymonitor/pom.xml

Modified: felix/sandbox/donsez/monitor.sample.memorymonitor/pom.xml
URL: http://svn.apache.org/viewvc/felix/sandbox/donsez/monitor.sample.memorymonitor/pom.xml?rev=713729&r1=713728&r2=713729&view=diff
==============================================================================
--- felix/sandbox/donsez/monitor.sample.memorymonitor/pom.xml (original)
+++ felix/sandbox/donsez/monitor.sample.memorymonitor/pom.xml Thu Nov 13 06:13:08 2008
@@ -23,33 +23,39 @@
 		<description>provides a sample of Monitorable 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 Sample : Memory Monitor</name>
+
   <artifactId>org.apache.felix.sandbox.monitor.sample.memorymonitor</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.sandbox.monitor</artifactId>
-      <version>${pom.version}</version>
+      <groupId>org.apache.felix.sandbox</groupId>
+      <version>0.1.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
   <build>
@@ -72,37 +78,11 @@
             
             <Bundle-Activator>${pom.artifactId}.MemoryMonitor</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>