Thilina Gunarathne wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Adam,
I substituted ${parent.version} and
${project.version}. + <version>${parent.version}</version>
Using the above had known issues with the maven uploaded POM files,
since maven does not replace the above variable with the actual value
when uploading.. I'm not sure whether it's fixed in the latest maven2
releases.
Sorry about that, it created correct poms in my local repository; however, since it's not really doing any work that can't be done with a perl one-liner, I backed it out. A diff that keeps the version "hard-coded" is attached.

cheers,

AC
Index: core/pom.xml
===================================================================
--- core/pom.xml        (revision 541992)
+++ core/pom.xml        (working copy)
@@ -45,7 +45,7 @@
     <dependency>
        <groupId>org.apache.abdera</groupId>
        <artifactId>abdera-i18n</artifactId>
-       <version>${project.version}</version>
+       <version>0.3.0-incubating-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
Index: pom.xml
===================================================================
--- pom.xml     (revision 541992)
+++ pom.xml     (working copy)
@@ -198,7 +198,7 @@
       <dependency>
         <groupId>commons-httpclient</groupId>
         <artifactId>commons-httpclient</artifactId>
-        <version>3.0</version>
+        <version>3.1-rc1</version>
         <scope>compile</scope>
       </dependency>
          
@@ -212,14 +212,14 @@
       <dependency>
         <groupId>org.apache.ws.commons.axiom</groupId>
         <artifactId>axiom-api</artifactId>
-        <version>1.2.1</version>
+        <version>1.2.4</version>
         <scope>compile</scope>
       </dependency>
       
       <dependency>
         <groupId>org.apache.ws.commons.axiom</groupId>
         <artifactId>axiom-impl</artifactId>
-        <version>1.2.1</version>
+        <version>1.2.4</version>
         <scope>compile</scope>
       </dependency>
       
@@ -246,7 +246,7 @@
       <dependency>
         <groupId>woodstox</groupId>
         <artifactId>wstx-asl</artifactId>
-        <version>2.0.5</version>
+        <version>3.1.1</version>
         <scope>runtime</scope>     
       </dependency>
       
@@ -260,14 +260,14 @@
       <dependency>
         <groupId>jaxen</groupId>
         <artifactId>jaxen</artifactId>
-        <version>1.1-beta-7</version>
+        <version>1.1.1</version>
         <scope>compile</scope>
       </dependency>
       
       <dependency>
         <groupId>xml-security</groupId>
         <artifactId>xmlsec</artifactId>
-        <version>1.3.0</version>
+        <version>1.3.0</version> <!-- 1.4.1 -->
         <scope>compile</scope>
       </dependency>
       

Reply via email to