|
|
|
|
@ -141,34 +141,58 @@
@@ -141,34 +141,58 @@
|
|
|
|
|
<optional>true</optional> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
|
<spring.osgi.export> |
|
|
|
|
org.springframework.security.*;version=${pom.version} |
|
|
|
|
</spring.osgi.export> |
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.felix</groupId> |
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId> |
|
|
|
|
<version>${felix.version}</version> |
|
|
|
|
<extensions>true</extensions> |
|
|
|
|
<configuration> |
|
|
|
|
<instructions> |
|
|
|
|
<Bundle-SymbolicName>org.springframework.bundle.security.core</Bundle-SymbolicName> |
|
|
|
|
<Export-Package>org.springframework.security.*;version=${pom.version}</Export-Package> |
|
|
|
|
<Private-Package>!org.springframework.security.*</Private-Package> |
|
|
|
|
<Implementation-Title>${pom.name}</Implementation-Title> |
|
|
|
|
<Implementation-Version>${pom.version}</Implementation-Version> |
|
|
|
|
<Import-Package> |
|
|
|
|
org.springframework*;resolution:=optional;version="[2.0,2.6)", |
|
|
|
|
*;resolution:=optional |
|
|
|
|
</Import-Package> |
|
|
|
|
<!-- |
|
|
|
|
<Embed-Dependency> |
|
|
|
|
*;scope=compile|runtime;inline=true |
|
|
|
|
</Embed-Dependency> |
|
|
|
|
--> |
|
|
|
|
</instructions> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
<spring.osgi.import> |
|
|
|
|
!com.ibm.websphere.security, |
|
|
|
|
javax.servlet.*;version="[2.4.0, 3.0.0)";resolution:=optional, |
|
|
|
|
net.sf.ehcache.*;version="[1.4.1, 2.0.0)";resolution:=optional, |
|
|
|
|
org.aopalliance.*;version="[1.0.0, 2.0.0)", |
|
|
|
|
org.apache.commons.codec.*;version="[1.3.0, 2.0.0)", |
|
|
|
|
org.apache.commons.collections.*;version="[3.2.0, 4.0.0)", |
|
|
|
|
org.apache.commons.lang.*;version="[2.1.0, 3.0.0)", |
|
|
|
|
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)", |
|
|
|
|
org.apache.directory.server.configuration.*;version="[1.0.2, 2.0.0)";resolution:=optional, |
|
|
|
|
org.apache.directory.server.core.*;version="[1.0.2, 2.0.0)";resolution:=optional, |
|
|
|
|
org.apache.directory.server.protocol.*;version="[1.0.2, 2.0.0)";resolution:=optional, |
|
|
|
|
org.aspectj.*;version="[1.5.4, 2.0.0)";resolution:=optional, |
|
|
|
|
org.jaxen.*;version="[1.1.1, 2.0.0)";resolution:=optional, |
|
|
|
|
org.springframework.aop.*;version="${spring.version.osgi}", |
|
|
|
|
org.springframework.beans.*;version="${spring.version.osgi}", |
|
|
|
|
org.springframework.context.*;version="${spring.version.osgi}", |
|
|
|
|
org.springframework.core.*;version="${spring.version.osgi}", |
|
|
|
|
org.springframework.dao.*;version="${spring.version.osgi}";resolution:=optional, |
|
|
|
|
org.springframework.jdbc.*;version="${spring.version.osgi}";resolution:=optional, |
|
|
|
|
org.springframework.ldap.*;version="[1.2.1.A, 2.0.0)";resolution:=optional, |
|
|
|
|
org.springframework.metadata.*;version="${spring.version.osgi}", |
|
|
|
|
org.springframework.mock.*;version="${spring.version.osgi}";resolution:=optional, |
|
|
|
|
org.springframework.remoting.*;version="${spring.version.osgi}";resolution:=optional, |
|
|
|
|
org.springframework.util.*;version="${spring.version.osgi}", |
|
|
|
|
org.springframework.web.*;version="${spring.version.osgi}";resolution:=optional, |
|
|
|
|
javax.crypto.*, |
|
|
|
|
javax.naming.*, |
|
|
|
|
javax.rmi.*, |
|
|
|
|
javax.security.*, |
|
|
|
|
javax.sql.*, |
|
|
|
|
javax.xml.parsers.*, |
|
|
|
|
org.w3c.dom.*, |
|
|
|
|
org.xml.sax.*, |
|
|
|
|
*;resolution:=optional |
|
|
|
|
</spring.osgi.import> |
|
|
|
|
|
|
|
|
|
<spring.osgi.private.pkg> |
|
|
|
|
!org.springframework.security.* |
|
|
|
|
</spring.osgi.private.pkg> |
|
|
|
|
<!-- |
|
|
|
|
<spring.osgi.include.res> |
|
|
|
|
src/main/resources |
|
|
|
|
</spring.osgi.include.res> |
|
|
|
|
--> |
|
|
|
|
<spring.osgi.symbolic.name>org.springframework.security</spring.osgi.symbolic.name> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
</project> |
|
|
|
|
|