You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ve...@apache.org on 2009/04/11 00:23:44 UTC

svn commit: r764086 - /webservices/rampart/trunk/java/pom.xml

Author: veithen
Date: Fri Apr 10 22:23:43 2009
New Revision: 764086

URL: http://svn.apache.org/viewvc?rev=764086&view=rev
Log:
Added a profile that allows to specify a different Axiom version.

Modified:
    webservices/rampart/trunk/java/pom.xml

Modified: webservices/rampart/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/java/pom.xml?rev=764086&r1=764085&r2=764086&view=diff
==============================================================================
--- webservices/rampart/trunk/java/pom.xml (original)
+++ webservices/rampart/trunk/java/pom.xml Fri Apr 10 22:23:43 2009
@@ -324,6 +324,33 @@
             </modules>
         </profile>
 
+        <profile>
+            <id>axiom-managed</id>
+            <activation>
+                <property>
+                    <name>axiom.version</name>
+                </property>
+            </activation>
+            <dependencyManagement>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.ws.commons.axiom</groupId>
+                        <artifactId>axiom-api</artifactId>
+                        <version>${axiom.version}</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.apache.ws.commons.axiom</groupId>
+                        <artifactId>axiom-impl</artifactId>
+                        <version>${axiom.version}</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.apache.ws.commons.axiom</groupId>
+                        <artifactId>axiom-dom</artifactId>
+                        <version>${axiom.version}</version>
+                    </dependency>
+                </dependencies>
+            </dependencyManagement>
+        </profile>
     </profiles>
 
     <modules>