You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/04/15 10:56:15 UTC

svn commit: r1467904 - /syncope/branches/1_1_X/pom.xml

Author: ilgrosso
Date: Mon Apr 15 08:56:14 2013
New Revision: 1467904

URL: http://svn.apache.org/r1467904
Log:
CGLib 3.0 pulls ASM 4.0, hence need to exclude older ASM artifacts

Modified:
    syncope/branches/1_1_X/pom.xml

Modified: syncope/branches/1_1_X/pom.xml
URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/pom.xml?rev=1467904&r1=1467903&r2=1467904&view=diff
==============================================================================
--- syncope/branches/1_1_X/pom.xml (original)
+++ syncope/branches/1_1_X/pom.xml Mon Apr 15 08:56:14 2013
@@ -457,11 +457,23 @@ under the License.
         <groupId>org.apache.openjpa</groupId>
         <artifactId>openjpa</artifactId>
         <version>${openjpa.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>org.apache.openjpa</groupId>
         <artifactId>openjpa-jdbc</artifactId>
         <version>${openjpa.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>org.apache.openjpa</groupId>
@@ -472,7 +484,7 @@ under the License.
       <dependency>
         <groupId>javax.validation</groupId>
         <artifactId>validation-api</artifactId>
-        <version>1.1.0.Final</version>
+        <version>1.0.0.GA</version>
       </dependency>
       <dependency>
         <groupId>org.apache.bval</groupId>
@@ -602,6 +614,12 @@ under the License.
         <groupId>org.apache.cxf</groupId>
         <artifactId>cxf-rt-frontend-jaxws</artifactId>
         <version>${cxf.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <!-- /CXF -->