Include javax.jdo 3.x in spring-orm template.mf
Prior to this change, spring-orm/template.mf was exclusive of javax.jdo 3.0.0. Now, after local testing against the newly-released jdo-api 3.0 jar, the template has been updated to allow for use in OSGi containers. Note that actually updating build dependency descriptors to JDO 3.0 such that the framework is continually tested against this version is covered by a separate issue (SPR-8668). Issue: SPR-8667, SPR-8655
This commit is contained in:
parent
2e5f3559d3
commit
8759b20e46
|
|
@ -9,7 +9,7 @@ Import-Package:
|
||||||
org.eclipse.persistence.expressions;version="[1.0.0, 3.0.0)";resolution:=optional
|
org.eclipse.persistence.expressions;version="[1.0.0, 3.0.0)";resolution:=optional
|
||||||
Import-Template:
|
Import-Template:
|
||||||
com.ibatis.*;version="[2.3.0, 3.0.0)";resolution:=optional,
|
com.ibatis.*;version="[2.3.0, 3.0.0)";resolution:=optional,
|
||||||
javax.jdo.*;version="[2.0.0, 3.0.0)";resolution:=optional,
|
javax.jdo.*;version="[2.0.0, 4.0.0)";resolution:=optional,
|
||||||
javax.naming.*;version="0";resolution:=optional,
|
javax.naming.*;version="0";resolution:=optional,
|
||||||
javax.persistence.*;version="[1.0.0, 3.0.0)";resolution:=optional,
|
javax.persistence.*;version="[1.0.0, 3.0.0)";resolution:=optional,
|
||||||
javax.servlet.*;version="[2.4.0, 4.0.0)";resolution:=optional,
|
javax.servlet.*;version="[2.4.0, 4.0.0)";resolution:=optional,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue