
|
If you were logged in you would be able to see more operations.
|
|
|
|
The spring-core module currently does not specify a version for the import of the org.objectweb.asm* packages. Since asm v1 is binary incompatible with v2 this can cause a problem. Some other projects (e.g. hibernate) require the v1 version while Spring requires the v2 version.
The pom.xml should thus be updated, something like:
org.objectweb.asm*;resolution:=optional;version=2.2.3,
The patch is:
Index: spring-modules/spring-core/pom.xml
===================================================================
--- spring-modules/spring-core/pom.xml (revision 7383)
+++ spring-modules/spring-core/pom.xml (working copy)
@@ -19,7 +19,7 @@
<spring.osgi.import.pkg>
org.apache.commons.collections*;resolution:=optional,
org.apache.log4j*;resolution:=optional,
- org.objectweb.asm*;resolution:=optional,
+ org.objectweb.asm*;resolution:=optional;version=2.2.3,
javax.xml.transform;resolution:=optional,
org.w3c.dom;resolution:=optional,
org.xml.sax;resolution:=optional
@@ -27,4 +27,4 @@
</properties>
|
|
Description
|
The spring-core module currently does not specify a version for the import of the org.objectweb.asm* packages. Since asm v1 is binary incompatible with v2 this can cause a problem. Some other projects (e.g. hibernate) require the v1 version while Spring requires the v2 version.
The pom.xml should thus be updated, something like:
org.objectweb.asm*;resolution:=optional;version=2.2.3,
The patch is:
Index: spring-modules/spring-core/pom.xml
===================================================================
--- spring-modules/spring-core/pom.xml (revision 7383)
+++ spring-modules/spring-core/pom.xml (working copy)
@@ -19,7 +19,7 @@
<spring.osgi.import.pkg>
org.apache.commons.collections*;resolution:=optional,
org.apache.log4j*;resolution:=optional,
- org.objectweb.asm*;resolution:=optional,
+ org.objectweb.asm*;resolution:=optional;version=2.2.3,
javax.xml.transform;resolution:=optional,
org.w3c.dom;resolution:=optional,
org.xml.sax;resolution:=optional
@@ -27,4 +27,4 @@
</properties>
|
Show » |
Sort Order:
| There are no comments yet on this issue.
|
|