SPR-7308
+ add updated IDE classpath + add updated OSGi manifest git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3791 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
f2ce1f0a22
commit
1237c3ab36
|
|
@ -15,6 +15,7 @@
|
||||||
<conf name="aspectj" extends="runtime" description="JARs needed to run with AspectJ"/>
|
<conf name="aspectj" extends="runtime" description="JARs needed to run with AspectJ"/>
|
||||||
<conf name="tx" extends="runtime" description="JARs needed to run transactional aspects"/>
|
<conf name="tx" extends="runtime" description="JARs needed to run transactional aspects"/>
|
||||||
<conf name="orm" extends="runtime" description="JARs needed to compile JPA aspects"/>
|
<conf name="orm" extends="runtime" description="JARs needed to compile JPA aspects"/>
|
||||||
|
<conf name="cache" extends="runtime" description="JARs needed to compile caching aspects"/>
|
||||||
</configurations>
|
</configurations>
|
||||||
|
|
||||||
<publications>
|
<publications>
|
||||||
|
|
@ -32,7 +33,7 @@
|
||||||
<dependency org="org.springframework" name="org.springframework.orm" rev="latest.integration" conf="optional, orm->compile"/>
|
<dependency org="org.springframework" name="org.springframework.orm" rev="latest.integration" conf="optional, orm->compile"/>
|
||||||
<dependency org="org.springframework" name="org.springframework.test" rev="latest.integration" conf="test->runtime"/>
|
<dependency org="org.springframework" name="org.springframework.test" rev="latest.integration" conf="test->runtime"/>
|
||||||
<dependency org="org.springframework" name="org.springframework.context" rev="latest.integration" conf="test->runtime"/>
|
<dependency org="org.springframework" name="org.springframework.context" rev="latest.integration" conf="test->runtime"/>
|
||||||
<dependency org="org.springframework" name="org.springframework.context.support" rev="latest.integration" conf="test->runtime"/>
|
<dependency org="org.springframework" name="org.springframework.context.support" rev="latest.integration" conf="optional, cache->compile"/>
|
||||||
<dependency org="javax.persistence" name="com.springsource.javax.persistence" rev="1.0.0" conf="optional, orm->compile"/>
|
<dependency org="javax.persistence" name="com.springsource.javax.persistence" rev="1.0.0" conf="optional, orm->compile"/>
|
||||||
<dependency org="org.junit" name="com.springsource.org.junit" rev="${org.junit.version}" conf="test->compile"/>
|
<dependency org="org.junit" name="com.springsource.org.junit" rev="${org.junit.version}" conf="test->compile"/>
|
||||||
<dependency org="javax.mail" name="com.springsource.javax.mail" rev="1.4.0" conf="optional, test->compile"/>
|
<dependency org="javax.mail" name="com.springsource.javax.mail" rev="1.4.0" conf="optional, test->compile"/>
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ Import-Template:
|
||||||
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)",
|
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)",
|
||||||
org.aspectj.*;version=${aj.osgi.range};resolution:=optional,
|
org.aspectj.*;version=${aj.osgi.range};resolution:=optional,
|
||||||
org.springframework.beans.*;version=${spring.osgi.range},
|
org.springframework.beans.*;version=${spring.osgi.range},
|
||||||
|
org.springframework.cache.*;version=${spring.osgi.range};resolution:=optional,
|
||||||
org.springframework.transaction.*;version=${spring.osgi.range};resolution:=optional,
|
org.springframework.transaction.*;version=${spring.osgi.range};resolution:=optional,
|
||||||
org.springframework.core.task.*;version=${spring.osgi.range};resolution:=optional,
|
org.springframework.core.task.*;version=${spring.osgi.range};resolution:=optional,
|
||||||
org.springframework.orm.jpa.*;version=${spring.osgi.range};resolution:=optional,
|
org.springframework.orm.jpa.*;version=${spring.osgi.range};resolution:=optional,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue