You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by zo...@apache.org on 2011/02/24 14:42:30 UTC

svn commit: r1074148 - /aries/branches/experimental-release-by-module/proxy/proxy-api/pom.xml

Author: zoe
Date: Thu Feb 24 13:42:30 2011
New Revision: 1074148

URL: http://svn.apache.org/viewvc?rev=1074148&view=rev
Log:
add explicit version to pom

Modified:
    aries/branches/experimental-release-by-module/proxy/proxy-api/pom.xml

Modified: aries/branches/experimental-release-by-module/proxy/proxy-api/pom.xml
URL: http://svn.apache.org/viewvc/aries/branches/experimental-release-by-module/proxy/proxy-api/pom.xml?rev=1074148&r1=1074147&r2=1074148&view=diff
==============================================================================
--- aries/branches/experimental-release-by-module/proxy/proxy-api/pom.xml (original)
+++ aries/branches/experimental-release-by-module/proxy/proxy-api/pom.xml Thu Feb 24 13:42:30 2011
@@ -18,11 +18,11 @@
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.aries.proxy</groupId>
-        <artifactId>proxy-parent</artifactId>
-        <version>0.4-SNAPSHOT</version>
-    </parent>
+     <parent>
+         <groupId>org.apache.aries</groupId>
+         <artifactId>java5-parent</artifactId>
+         <version>0.3</version>
+     </parent>
 
     <artifactId>org.apache.aries.proxy.api</artifactId>
     <packaging>bundle</packaging>
@@ -52,7 +52,11 @@
     </properties>
 
     <dependencies>
-    <!-- There should be no dependency version in this pom, all versions are in the module parent or default parent -->
+       <dependency>
+            <groupId>org.apache.aries</groupId>
+            <artifactId>org.apache.aries.util</artifactId>
+            <version>0.3</version>
+        </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.core</artifactId>
@@ -73,10 +77,6 @@
             <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.aries</groupId>
-            <artifactId>org.apache.aries.util</artifactId>
-        </dependency>
     </dependencies>
 </project>