Repository: servicemix-bundles Updated Branches: refs/heads/master d9b0bb12f -> b6d643e62
SM-2915 - Create OSGi bundles for spring-security 4.0.4.RELEASE Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/b6d643e6 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/b6d643e6 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/b6d643e6 Branch: refs/heads/master Commit: b6d643e62725315eb8618db09bdb62574f29d7ea Parents: d9b0bb1 Author: Jean-Baptiste Onofré <[email protected]> Authored: Thu Mar 24 14:42:24 2016 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Thu Mar 24 14:42:24 2016 +0100 ---------------------------------------------------------------------- pom.xml | 2 + spring-security-config-4.0.4.RELEASE/pom.xml | 124 ++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 11 ++ spring-security-core-4.0.4.RELEASE/pom.xml | 140 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 11 ++ 5 files changed, 288 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b6d643e6/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ff6344b..6352f92 100644 --- a/pom.xml +++ b/pom.xml @@ -107,6 +107,8 @@ <module>spring-webmvc-4.2.5.RELEASE</module> <module>spring-webmvc-portlet-4.2.5.RELEASE</module> <module>spring-websocket-4.2.5.RELEASE</module> + <module>spring-security-config-4.0.4.RELEASE</module> + <module>spring-security-core-4.0.4.RELEASE</module> </modules> </project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b6d643e6/spring-security-config-4.0.4.RELEASE/pom.xml ---------------------------------------------------------------------- diff --git a/spring-security-config-4.0.4.RELEASE/pom.xml b/spring-security-config-4.0.4.RELEASE/pom.xml new file mode 100644 index 0000000..666a502 --- /dev/null +++ b/spring-security-config-4.0.4.RELEASE/pom.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.spring-security-config</artifactId> + <version>4.0.4.RELEASE_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.springframework.security</pkgGroupId> + <pkgArtifactId>spring-security-config</pkgArtifactId> + <pkgVersion>4.0.4.RELEASE</pkgVersion> + <servicemix.osgi.export.pkg> + org.springframework.security.config + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.servlet;resolution:=optional;version=0, + javax.servlet.http;resolution:=optional;version=0, + org.apache.commons.logging;version="[1.0.4,2.0.0)", + org.aspectj.weaver.tools;resolution:=optional;version="[1.7,2)", + org.springframework.aop*;resolution:=optional;version="[4,5)", + org.springframework.beans*;version="[4,5)", + org.springframework.context*;version="[4,5)", + org.springframework.core*;version="[4,5)", + org.springframework.security*;resolution:=optional;version="[4,5)", + org.springframework.web*;resolution:=optional;version="[4,5)", + org.springframework.util;version="[4,5)", + org.springframework.util.xml;version="[4,5)", + org.w3c.dom;resolution:=optional;version=0, + javax.sql;resolution:=optional, + org.aopalliance.intercept;resolution:=optional, + org.openid4java.consumer;resolution:=optional, + org.springframework.http;resolution:=optional;version="[4,5)", + org.springframework.jdbc.datasource.init;resolution:=optional;version="[4,5)", + org.springframework.ldap.core*;resolution:=optional;version="[4,5)", + org.springframework.messaging*;resolution:=optional;version="[4,5)" + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b6d643e6/spring-security-config-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/spring-security-config-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-config-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..c22e28e --- /dev/null +++ b/spring-security-config-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,11 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Spring Framework Security Config module. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b6d643e6/spring-security-core-4.0.4.RELEASE/pom.xml ---------------------------------------------------------------------- diff --git a/spring-security-core-4.0.4.RELEASE/pom.xml b/spring-security-core-4.0.4.RELEASE/pom.xml new file mode 100644 index 0000000..5535e31 --- /dev/null +++ b/spring-security-core-4.0.4.RELEASE/pom.xml @@ -0,0 +1,140 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.spring-security-core</artifactId> + <version>4.0.4.RELEASE_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.springframework.security</pkgGroupId> + <pkgArtifactId>spring-security-core</pkgArtifactId> + <pkgVersion>4.0.4.RELEASE</pkgVersion> + <servicemix.osgi.export.pkg> + org.springframework.security + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.annotation.security;resolution:=optional;version=0, + javax.crypto;resolution:=optional;version=0, + javax.crypto.spec;resolution:=optional;version=0, + javax.security.auth;resolution:=optional;version=0, + javax.security.auth.callback;resolution:=optional;version=0, + javax.security.auth.login;resolution:=optional;version=0, + javax.security.auth.spi;resolution:=optional;version=0, + net.sf.ehcache;resolution:=optional;version="[1.4.1,2.5.0)", + org.aopalliance.aop;version="[1.0.0,2.0.0)", + org.aopalliance.intercept;version="[1.0.0,2.0.0)", + org.apache.commons.logging;version="[1.0.4,2.0.0)", + org.aspectj.lang;resolution:=optional;version="[1.7,2)", + org.aspectj.lang.reflect;resolution:=optional;version="[1.7,2)", + org.springframework.aop;resolution:=optional;version="[4,5)", + org.springframework.aop.framework;resolution:=optional;version="[4,5)", + org.springframework.aop.support;resolution:=optional;version="[4,5)", + org.springframework.beans;version="[4,5)", + org.springframework.beans.factory;version="[4,5)", + org.springframework.beans.propertyeditors;version="[4,5)", + org.springframework.context;version="[4,5)", + org.springframework.context.expression;version="[4,5)", + org.springframework.context.support;version="[4,5)", + org.springframework.core;version="[4,5)", + org.springframework.core.annotation;version="[4,5)", + org.springframework.core.io;version="[4,5)", + org.springframework.dao;resolution:=optional;version="[4,5)", + org.springframework.expression;resolution:=optional;version="[4,5)", + org.springframework.expression.spel.standard;resolution:=optional;version="[4,5)", + org.springframework.expression.spel.support;resolution:=optional;version="[4,5)", + org.springframework.jdbc.core;resolution:=optional;version="[4,5)", + org.springframework.jdbc.core.support;resolution:=optional;version="[4,5)", + org.springframework.util;version="[4,5)", + org.springframework.cache;resolution:=optional;version="[4,5)", + org.springframework.context.event;resolution:=optional;version="[4,5)", + org.springframework.core.task;resolution:=optional;version="[4,5)", + org.springframework.scheduling;resolution:=optional;version="[4,5)" + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b6d643e6/spring-security-core-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/spring-security-core-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-core-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..399933a --- /dev/null +++ b/spring-security-core-4.0.4.RELEASE/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,11 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Spring Framework Security Core module. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m
