You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ac...@apache.org on 2016/05/06 08:36:01 UTC

[1/8] servicemix-bundles git commit: SM-2980 : Create OSGi bundle for Okio 1.8.0

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 33244a96d -> f17436e64


SM-2980 : Create OSGi bundle for Okio 1.8.0


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/2d1a7b0c
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/2d1a7b0c
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/2d1a7b0c

Branch: refs/heads/master
Commit: 2d1a7b0c579801f1c473ee14c6dd8a7f1a334505
Parents: 4f4d224
Author: lburgazzoli <lb...@gmail.com>
Authored: Mon May 2 17:07:27 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Mon May 2 17:07:27 2016 +0200

----------------------------------------------------------------------
 okio-1.8.0/pom.xml                              | 107 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 +++
 pom.xml                                         |   1 +
 3 files changed, 120 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/2d1a7b0c/okio-1.8.0/pom.xml
----------------------------------------------------------------------
diff --git a/okio-1.8.0/pom.xml b/okio-1.8.0/pom.xml
new file mode 100644
index 0000000..81dd3f4
--- /dev/null
+++ b/okio-1.8.0/pom.xml
@@ -0,0 +1,107 @@
+<?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.okio</artifactId>
+    <version>1.8.0_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <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>com.squareup.okio</pkgGroupId>
+        <pkgArtifactId>okio</pkgArtifactId>
+        <pkgVersion>1.8.0</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            okio
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okio</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okio</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </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/2d1a7b0c/okio-1.8.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/okio-1.8.0/src/main/resources/OSGI-INF/bundle.info b/okio-1.8.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..b24b209
--- /dev/null
+++ b/okio-1.8.0/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,12 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Okio is a new library that complements java.io and java.nio to make it much 
+    easier to access, store, and process your data.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/square/okio\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/2d1a7b0c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 35ba064..8abe03b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,6 +91,7 @@
         <module>ant-1.9.7</module>
         <module>elasticsearch-2.3.1</module>
         <module>avro-1.8.0</module>
+        <module>okio-1.8.0</module>
     </modules>
 
 </project>


[7/8] servicemix-bundles git commit: Merge branch 'SM-2981' of https://github.com/lburgazzoli/apache-servicemix-bundles

Posted by ac...@apache.org.
Merge branch 'SM-2981' of https://github.com/lburgazzoli/apache-servicemix-bundles


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/e9a166c4
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/e9a166c4
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/e9a166c4

Branch: refs/heads/master
Commit: e9a166c4773f7cbfa3d2b74a4cd0e7f8193a66f8
Parents: 392f340 388ce96
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 6 10:29:45 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 6 10:29:45 2016 +0200

----------------------------------------------------------------------
 orbitz-consul-client-0.11.1/pom.xml             | 120 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 pom.xml                                         |   1 +
 3 files changed, 132 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/e9a166c4/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index aabe11a,ca67a36..ad46609
--- a/pom.xml
+++ b/pom.xml
@@@ -43,9 -43,55 +43,10 @@@
  
      <modules>
          <!-- add modules for all bundles to released in the next batch here -->
 -        <module>elasticsearch-2.3.0</module>
 -        <module>hystrix-event-stream-1.5.2</module>
 -        <module>hystrix-1.5.2</module>
 -        <module>hystrix-1.4.26</module>
 -        <module>hystrix-1.4.23</module>
 -        <module>hystrix-1.3.13</module>
 -        <module>jnats-0.4.1</module>
 -        <module>solr-solrj-6.0.0</module>
 -        <module>lucene-6.0.0</module>
 -        <module>lucene-analyzers-common-6.0.0</module>
 -        <module>lucene-queries-6.0.0</module>
 -        <module>lucene-queryparser-6.0.0</module>
 -        <module>lucene-sandbox-6.0.0</module>
 -        <module>okio-1.7.0</module>
 -        <module>retrofit-2.0.1</module>
 -        <module>spring-security-web-4.0.4.RELEASE</module>
 -        <module>spring-security-acl-4.0.4.RELEASE</module>
 -        <module>spring-security-taglibs-4.0.4.RELEASE</module>
 -        <module>jt400-9.0</module>
 -        <module>ironmq-3.0.3</module>
 -        <module>ironmq-3.0.4</module>
 -        <module>brave-zipkin-3.5.0</module>
 -        <module>jedis-2.4.0</module>
 -        <module>opensaml-3.2.0</module>
 -        <module>dbunit-2.5.2</module>
 -        <module>qpid-6.0.2</module>
 -        <module>elasticsearch-repository-hdfs-2.3.0</module>
 -        <module>spring-batch-core-3.0.7.RELEASE</module>
 -        <module>spring-batch-infrastructure-3.0.7.RELEASE</module>
 -        <module>swagger-annotations-1.3.13</module>
 -        <module>swagger-core-1.3.13</module>
 -        <module>swagger-jaxrs-1.3.13</module>
 -        <module>retrofit-2.0.2</module>
 -        <module>spring-xml-2.3.0.RELEASE</module>
 -        <module>ognl-3.1.4</module>
 -        <module>gae-1.9.36</module>
 -        <module>braintree-java-2.61.0</module>
 -        <module>aws-java-sdk-1.10.73</module>
 -        <module>htmlunit-2.21</module>
 -        <module>hbase-1.2.1</module>
 -        <module>quartz-2.2.3</module>
 -        <module>spring-ws-core-2.3.0.RELEASE</module>
 -        <module>spring-ws-security-2.3.0.RELEASE</module>
 -        <module>spring-ws-support-2.3.0.RELEASE</module>
 -        <module>spring-ws-test-2.3.0.RELEASE</module>
 -        <module>ant-1.9.7</module>
 -        <module>elasticsearch-2.3.1</module>
 -        <module>avro-1.8.0</module>
 +        <module>brave-zipkin-3.6.0</module>
 +        <module>orbitz-consul-client-0.11.0</module>
 +        <module>okio-1.8.0</module>
+         <module>orbitz-consul-client-0.11.1</module>
      </modules>
  
  </project>


[6/8] servicemix-bundles git commit: Merge branch 'SM-2980' of https://github.com/lburgazzoli/apache-servicemix-bundles

Posted by ac...@apache.org.
Merge branch 'SM-2980' of https://github.com/lburgazzoli/apache-servicemix-bundles


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/392f340f
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/392f340f
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/392f340f

Branch: refs/heads/master
Commit: 392f340f2059e6b4b5eb5e60dbfe7c6aa41bf83c
Parents: fc569a1 2d1a7b0
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 6 10:27:15 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 6 10:27:15 2016 +0200

----------------------------------------------------------------------
 okio-1.8.0/pom.xml                              | 107 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 +++
 pom.xml                                         |   1 +
 3 files changed, 120 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/392f340f/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index 08bf869,8abe03b..aabe11a
--- a/pom.xml
+++ b/pom.xml
@@@ -43,8 -43,55 +43,9 @@@
  
      <modules>
          <!-- add modules for all bundles to released in the next batch here -->
 -        <module>elasticsearch-2.3.0</module>
 -        <module>hystrix-event-stream-1.5.2</module>
 -        <module>hystrix-1.5.2</module>
 -        <module>hystrix-1.4.26</module>
 -        <module>hystrix-1.4.23</module>
 -        <module>hystrix-1.3.13</module>
 -        <module>jnats-0.4.1</module>
 -        <module>solr-solrj-6.0.0</module>
 -        <module>lucene-6.0.0</module>
 -        <module>lucene-analyzers-common-6.0.0</module>
 -        <module>lucene-queries-6.0.0</module>
 -        <module>lucene-queryparser-6.0.0</module>
 -        <module>lucene-sandbox-6.0.0</module>
 -        <module>okio-1.7.0</module>
 -        <module>retrofit-2.0.1</module>
 -        <module>spring-security-web-4.0.4.RELEASE</module>
 -        <module>spring-security-acl-4.0.4.RELEASE</module>
 -        <module>spring-security-taglibs-4.0.4.RELEASE</module>
 -        <module>jt400-9.0</module>
 -        <module>ironmq-3.0.3</module>
 -        <module>ironmq-3.0.4</module>
 -        <module>brave-zipkin-3.5.0</module>
 -        <module>jedis-2.4.0</module>
 -        <module>opensaml-3.2.0</module>
 -        <module>dbunit-2.5.2</module>
 -        <module>qpid-6.0.2</module>
 -        <module>elasticsearch-repository-hdfs-2.3.0</module>
 -        <module>spring-batch-core-3.0.7.RELEASE</module>
 -        <module>spring-batch-infrastructure-3.0.7.RELEASE</module>
 -        <module>swagger-annotations-1.3.13</module>
 -        <module>swagger-core-1.3.13</module>
 -        <module>swagger-jaxrs-1.3.13</module>
 -        <module>retrofit-2.0.2</module>
 -        <module>spring-xml-2.3.0.RELEASE</module>
 -        <module>ognl-3.1.4</module>
 -        <module>gae-1.9.36</module>
 -        <module>braintree-java-2.61.0</module>
 -        <module>aws-java-sdk-1.10.73</module>
 -        <module>htmlunit-2.21</module>
 -        <module>hbase-1.2.1</module>
 -        <module>quartz-2.2.3</module>
 -        <module>spring-ws-core-2.3.0.RELEASE</module>
 -        <module>spring-ws-security-2.3.0.RELEASE</module>
 -        <module>spring-ws-support-2.3.0.RELEASE</module>
 -        <module>spring-ws-test-2.3.0.RELEASE</module>
 -        <module>ant-1.9.7</module>
 -        <module>elasticsearch-2.3.1</module>
 -        <module>avro-1.8.0</module>
 +        <module>brave-zipkin-3.6.0</module>
 +        <module>orbitz-consul-client-0.11.0</module>
+         <module>okio-1.8.0</module>
      </modules>
  
  </project>


[8/8] servicemix-bundles git commit: Merge branch 'SM-2982' of https://github.com/lburgazzoli/apache-servicemix-bundles

Posted by ac...@apache.org.
Merge branch 'SM-2982' of https://github.com/lburgazzoli/apache-servicemix-bundles


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/f17436e6
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/f17436e6
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/f17436e6

Branch: refs/heads/master
Commit: f17436e649aacf65d34cc29eb7e6239119db15f5
Parents: e9a166c 67580df
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 6 10:34:09 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 6 10:34:09 2016 +0200

----------------------------------------------------------------------
 pom.xml                                         |   7 +-
 spring-security-acl-4.1.0.RELEASE/pom.xml       | 122 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-config-4.1.0.RELEASE/pom.xml    | 131 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-core-4.1.0.RELEASE/pom.xml      | 141 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-taglibs-4.1.0.RELEASE/pom.xml   | 126 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-web-4.1.0.RELEASE/pom.xml       | 132 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 11 files changed, 713 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f17436e6/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index ad46609,94f7b66..acea7e7
--- a/pom.xml
+++ b/pom.xml
@@@ -42,11 -42,12 +42,16 @@@
      <name>Apache ServiceMix :: Bundles</name>
  
      <modules>
 -        <!-- add modules for all bundles to released in the next batch here -->        
 +        <!-- add modules for all bundles to released in the next batch here -->
 +        <module>brave-zipkin-3.6.0</module>
 +        <module>orbitz-consul-client-0.11.0</module>
 +        <module>okio-1.8.0</module>
-         <module>orbitz-consul-client-0.11.1</module>
++        <module>orbitz-consul-client-0.11.1</module>     
+         <module>spring-security-acl-4.1.0.RELEASE</module>
+         <module>spring-security-config-4.1.0.RELEASE</module>
+         <module>spring-security-core-4.1.0.RELEASE</module>
+         <module>spring-security-taglibs-4.1.0.RELEASE</module>
+         <module>spring-security-web-4.1.0.RELEASE</module>
      </modules>
  
  </project>


[2/8] servicemix-bundles git commit: SM-2979 : Create OSGi bundle for Orbitz Consul Client 0.11.0

Posted by ac...@apache.org.
SM-2979 : Create OSGi bundle for Orbitz Consul Client 0.11.0


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/cf7d835b
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/cf7d835b
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/cf7d835b

Branch: refs/heads/master
Commit: cf7d835b7261f507d31f015f1db61a23c283fc62
Parents: 4f4d224
Author: lburgazzoli <lb...@gmail.com>
Authored: Mon May 2 17:24:02 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Mon May 2 17:24:02 2016 +0200

----------------------------------------------------------------------
 orbitz-consul-client-0.11.0/pom.xml             | 109 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 pom.xml                                         |   1 +
 3 files changed, 121 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/cf7d835b/orbitz-consul-client-0.11.0/pom.xml
----------------------------------------------------------------------
diff --git a/orbitz-consul-client-0.11.0/pom.xml b/orbitz-consul-client-0.11.0/pom.xml
new file mode 100644
index 0000000..9cec17d
--- /dev/null
+++ b/orbitz-consul-client-0.11.0/pom.xml
@@ -0,0 +1,109 @@
+<?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.orbitz-consul-client</artifactId>
+    <version>0.11.0_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <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>com.orbitz.consul</pkgGroupId>
+        <pkgArtifactId>consul-client</pkgArtifactId>
+        <pkgVersion>0.11.0</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.orbitz.*;-noimport:=true
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.immutables.value;resolution:=optional,
+            android.*;resolution:=optional,
+            *
+        </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>
+            <optional>true</optional>
+        </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/cf7d835b/orbitz-consul-client-0.11.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/orbitz-consul-client-0.11.0/src/main/resources/OSGI-INF/bundle.info b/orbitz-consul-client-0.11.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1ba971e
--- /dev/null
+++ b/orbitz-consul-client-0.11.0/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,11 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Java Client for Consul HTTP API.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/OrbitzWorldwide/consul-client\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/cf7d835b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 35ba064..d1a1fdb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,6 +91,7 @@
         <module>ant-1.9.7</module>
         <module>elasticsearch-2.3.1</module>
         <module>avro-1.8.0</module>
+        <module>orbitz-consul-client-0.11.0</module>
     </modules>
 
 </project>


[5/8] servicemix-bundles git commit: Merge branch 'SM-2979' of https://github.com/lburgazzoli/apache-servicemix-bundles

Posted by ac...@apache.org.
Merge branch 'SM-2979' of https://github.com/lburgazzoli/apache-servicemix-bundles


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/fc569a10
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/fc569a10
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/fc569a10

Branch: refs/heads/master
Commit: fc569a10324960be08f64a63d7e2e4de50fb131a
Parents: 33244a9 cf7d835
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 6 10:25:56 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 6 10:25:56 2016 +0200

----------------------------------------------------------------------
 orbitz-consul-client-0.11.0/pom.xml             | 109 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 pom.xml                                         |   1 +
 3 files changed, 121 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/fc569a10/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index c70bd38,d1a1fdb..08bf869
--- a/pom.xml
+++ b/pom.xml
@@@ -43,7 -43,55 +43,8 @@@
  
      <modules>
          <!-- add modules for all bundles to released in the next batch here -->
 -        <module>elasticsearch-2.3.0</module>
 -        <module>hystrix-event-stream-1.5.2</module>
 -        <module>hystrix-1.5.2</module>
 -        <module>hystrix-1.4.26</module>
 -        <module>hystrix-1.4.23</module>
 -        <module>hystrix-1.3.13</module>
 -        <module>jnats-0.4.1</module>
 -        <module>solr-solrj-6.0.0</module>
 -        <module>lucene-6.0.0</module>
 -        <module>lucene-analyzers-common-6.0.0</module>
 -        <module>lucene-queries-6.0.0</module>
 -        <module>lucene-queryparser-6.0.0</module>
 -        <module>lucene-sandbox-6.0.0</module>
 -        <module>okio-1.7.0</module>
 -        <module>retrofit-2.0.1</module>
 -        <module>spring-security-web-4.0.4.RELEASE</module>
 -        <module>spring-security-acl-4.0.4.RELEASE</module>
 -        <module>spring-security-taglibs-4.0.4.RELEASE</module>
 -        <module>jt400-9.0</module>
 -        <module>ironmq-3.0.3</module>
 -        <module>ironmq-3.0.4</module>
 -        <module>brave-zipkin-3.5.0</module>
 -        <module>jedis-2.4.0</module>
 -        <module>opensaml-3.2.0</module>
 -        <module>dbunit-2.5.2</module>
 -        <module>qpid-6.0.2</module>
 -        <module>elasticsearch-repository-hdfs-2.3.0</module>
 -        <module>spring-batch-core-3.0.7.RELEASE</module>
 -        <module>spring-batch-infrastructure-3.0.7.RELEASE</module>
 -        <module>swagger-annotations-1.3.13</module>
 -        <module>swagger-core-1.3.13</module>
 -        <module>swagger-jaxrs-1.3.13</module>
 -        <module>retrofit-2.0.2</module>
 -        <module>spring-xml-2.3.0.RELEASE</module>
 -        <module>ognl-3.1.4</module>
 -        <module>gae-1.9.36</module>
 -        <module>braintree-java-2.61.0</module>
 -        <module>aws-java-sdk-1.10.73</module>
 -        <module>htmlunit-2.21</module>
 -        <module>hbase-1.2.1</module>
 -        <module>quartz-2.2.3</module>
 -        <module>spring-ws-core-2.3.0.RELEASE</module>
 -        <module>spring-ws-security-2.3.0.RELEASE</module>
 -        <module>spring-ws-support-2.3.0.RELEASE</module>
 -        <module>spring-ws-test-2.3.0.RELEASE</module>
 -        <module>ant-1.9.7</module>
 -        <module>elasticsearch-2.3.1</module>
 -        <module>avro-1.8.0</module>
 +        <module>brave-zipkin-3.6.0</module>
+         <module>orbitz-consul-client-0.11.0</module>
      </modules>
  
  </project>


[3/8] servicemix-bundles git commit: SM-2981 : Create OSGi bundle for Orbitz Consul Client 0.11.1

Posted by ac...@apache.org.
SM-2981 : Create OSGi bundle for Orbitz Consul Client 0.11.1


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/388ce96a
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/388ce96a
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/388ce96a

Branch: refs/heads/master
Commit: 388ce96a8999f622578d920f09e596a737e486ca
Parents: 4f4d224
Author: lburgazzoli <lb...@gmail.com>
Authored: Tue May 3 08:52:11 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Tue May 3 08:52:11 2016 +0200

----------------------------------------------------------------------
 orbitz-consul-client-0.11.1/pom.xml             | 120 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 pom.xml                                         |   1 +
 3 files changed, 132 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/388ce96a/orbitz-consul-client-0.11.1/pom.xml
----------------------------------------------------------------------
diff --git a/orbitz-consul-client-0.11.1/pom.xml b/orbitz-consul-client-0.11.1/pom.xml
new file mode 100644
index 0000000..16aa27b
--- /dev/null
+++ b/orbitz-consul-client-0.11.1/pom.xml
@@ -0,0 +1,120 @@
+<?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.orbitz-consul-client</artifactId>
+    <version>0.11.1_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <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>com.orbitz.consul</pkgGroupId>
+        <pkgArtifactId>consul-client</pkgArtifactId>
+        <pkgVersion>0.11.1</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.orbitz.*;-noimport:=true
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.immutables.value;resolution:=optional,
+            android.*;resolution:=optional,
+            *
+        </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>
+            <optional>true</optional>
+        </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>
+
+    <repositories>
+        <repository>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+            <id>central</id>
+            <name>bintray</name>
+            <url>http://jcenter.bintray.com</url>
+        </repository>
+    </repositories>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/388ce96a/orbitz-consul-client-0.11.1/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/orbitz-consul-client-0.11.1/src/main/resources/OSGI-INF/bundle.info b/orbitz-consul-client-0.11.1/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1ba971e
--- /dev/null
+++ b/orbitz-consul-client-0.11.1/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,11 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Java Client for Consul HTTP API.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/OrbitzWorldwide/consul-client\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/388ce96a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 35ba064..ca67a36 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,6 +91,7 @@
         <module>ant-1.9.7</module>
         <module>elasticsearch-2.3.1</module>
         <module>avro-1.8.0</module>
+        <module>orbitz-consul-client-0.11.1</module>
     </modules>
 
 </project>


[4/8] servicemix-bundles git commit: SM-2982 : Create OSGi bundles for Spring Security 4.1.0

Posted by ac...@apache.org.
SM-2982 : Create OSGi bundles for Spring Security 4.1.0


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/67580dfd
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/67580dfd
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/67580dfd

Branch: refs/heads/master
Commit: 67580dfdc7e1b1bc5a13403a454b734f61ed42e8
Parents: a8c49d9
Author: lburgazzoli <lb...@gmail.com>
Authored: Thu May 5 19:48:20 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Thu May 5 20:00:51 2016 +0200

----------------------------------------------------------------------
 pom.xml                                         |   7 +-
 spring-security-acl-4.1.0.RELEASE/pom.xml       | 122 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-config-4.1.0.RELEASE/pom.xml    | 131 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-core-4.1.0.RELEASE/pom.xml      | 141 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-taglibs-4.1.0.RELEASE/pom.xml   | 126 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-web-4.1.0.RELEASE/pom.xml       | 132 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 11 files changed, 713 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/67580dfd/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1829f65..94f7b66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,7 +42,12 @@
     <name>Apache ServiceMix :: Bundles</name>
 
     <modules>
-        <!-- add modules for all bundles to released in the next batch here -->
+        <!-- add modules for all bundles to released in the next batch here -->        
+        <module>spring-security-acl-4.1.0.RELEASE</module>
+        <module>spring-security-config-4.1.0.RELEASE</module>
+        <module>spring-security-core-4.1.0.RELEASE</module>
+        <module>spring-security-taglibs-4.1.0.RELEASE</module>
+        <module>spring-security-web-4.1.0.RELEASE</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/67580dfd/spring-security-acl-4.1.0.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-acl-4.1.0.RELEASE/pom.xml b/spring-security-acl-4.1.0.RELEASE/pom.xml
new file mode 100644
index 0000000..0e527f6
--- /dev/null
+++ b/spring-security-acl-4.1.0.RELEASE/pom.xml
@@ -0,0 +1,122 @@
+<?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-acl</artifactId>
+    <version>4.1.0.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-acl</pkgArtifactId>
+        <pkgVersion>4.1.0.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.acl
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.sql;resolution:=optional;version=0,
+            net.sf.ehcache;resolution:=optional;version="[1.4.1,2.5.0)",
+            org.aopalliance.intercept;version="[1.0.0, 2.0.0)",
+            org.apache.commons.logging;version="[1.0.4, 2.0.0)",
+            org.springframework.cache;resolution:=optional;version="[4,5)",
+            org.springframework.context;resolution:=optional;version="[4,5)",
+            org.springframework.context.support;resolution:=optional;version="[4,5)",
+            org.springframework.dao;resolution:=optional;version="[4,5)",
+            org.springframework.jdbc.core;resolution:=optional;version="[4,5)",
+            org.springframework.security.access;version="[4.1,5)",
+            org.springframework.security.access.hierarchicalroles;version="[4.1,5)",
+            org.springframework.security.access.vote;version="[4.1,5)",
+            org.springframework.security.core;version="[4.1,5)",
+            org.springframework.security.core.context;version="[4.1,5)",
+            org.springframework.security.core.userdetails;version="[4.1,5)",
+            org.springframework.security.util;version="[4.1,5)",
+            org.springframework.transaction.support;resolution:=optional;version="[4.1,5)",
+            org.springframework.util;resolution:=optional;version="[4.1,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/67580dfd/spring-security-acl-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-acl-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-acl-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-acl-4.1.0.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 Acl 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/67580dfd/spring-security-config-4.1.0.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-config-4.1.0.RELEASE/pom.xml b/spring-security-config-4.1.0.RELEASE/pom.xml
new file mode 100644
index 0000000..2ff9ba5
--- /dev/null
+++ b/spring-security-config-4.1.0.RELEASE/pom.xml
@@ -0,0 +1,131 @@
+<?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.1.0.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.1.0.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.web*;resolution:=optional;version="[4.1,5)",
+            org.springframework.security.ldap*;resolution:=optional;version="[4.1,5)",
+            org.springframework.security.messaging*;resolution:=optional;version="[4.1,5)",
+            org.springframework.security.openid*;resolution:=optional;version="[4.1,5)",
+            org.springframework.security.crypto*;resolution:=optional;version="[4.1,5)",
+            org.springframework.security.crypto.password;version="[4.1,5)",
+            org.springframework.security.crypto.bcrypt;version="[4.1,5)",
+            org.springframework.security*;version="[4.1,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/67580dfd/spring-security-config-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-config-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-config-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..c22e28e
--- /dev/null
+++ b/spring-security-config-4.1.0.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/67580dfd/spring-security-core-4.1.0.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-core-4.1.0.RELEASE/pom.xml b/spring-security-core-4.1.0.RELEASE/pom.xml
new file mode 100644
index 0000000..244ca2e
--- /dev/null
+++ b/spring-security-core-4.1.0.RELEASE/pom.xml
@@ -0,0 +1,141 @@
+<?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.1.0.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.1.0.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.bouncycastle.crypto*;resolution:=optional,
+            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/67580dfd/spring-security-core-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-core-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-core-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..399933a
--- /dev/null
+++ b/spring-security-core-4.1.0.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

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/67580dfd/spring-security-taglibs-4.1.0.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-taglibs-4.1.0.RELEASE/pom.xml b/spring-security-taglibs-4.1.0.RELEASE/pom.xml
new file mode 100644
index 0000000..4cd3a8c
--- /dev/null
+++ b/spring-security-taglibs-4.1.0.RELEASE/pom.xml
@@ -0,0 +1,126 @@
+<?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-taglibs</artifactId>
+    <version>4.1.0.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-taglibs</pkgArtifactId>
+        <pkgVersion>4.1.0.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.taglibs
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.servlet;version=0,
+            javax.servlet.http;version=0,
+            javax.servlet.jsp;version=0,
+            javax.servlet.jsp.tagext;version=0,
+            org.apache.commons.logging;version="[1.0.4, 2.0.0)",
+            org.springframework.beans;version="[4,5)",
+            org.springframework.context;version="[4,5)",
+            org.springframework.core;version="[4,5)",
+            org.springframework.expression;resolution:=optional;version="[4,5)",
+            org.springframework.security.access;version="[4.1,5)",
+            org.springframework.security.access.expression;version="[4.1,5)",
+            org.springframework.security.core;version="[4.1,5)",
+            org.springframework.security.core.context;version="[4.1,5)",
+            org.springframework.security.web;version="[4.1,5)",
+            org.springframework.security.web.access;version="[4.1,5)",
+            org.springframework.security.web.util;version="[4.1,5)",
+            org.springframework.security.web.context.support;version="[4.1,5)",
+            org.springframework.security.web.csrf;version="[4.1,5)",
+            org.springframework.util;version="[4,5)",
+            org.springframework.web.context;resolution:=optional;version="[4,5)",
+            org.springframework.web.context.support;resolution:=optional;version="[4,5)",
+            org.springframework.web.util;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/67580dfd/spring-security-taglibs-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-taglibs-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-taglibs-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1dac01a
--- /dev/null
+++ b/spring-security-taglibs-4.1.0.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 Taglibs 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/67580dfd/spring-security-web-4.1.0.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-web-4.1.0.RELEASE/pom.xml b/spring-security-web-4.1.0.RELEASE/pom.xml
new file mode 100644
index 0000000..fb9ce8e
--- /dev/null
+++ b/spring-security-web-4.1.0.RELEASE/pom.xml
@@ -0,0 +1,132 @@
+<?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-web</artifactId>
+    <version>4.1.0.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-web</pkgArtifactId>
+        <pkgVersion>4.1.0.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.web
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.naming;resolution:=optional;version=0,
+            javax.rmi;resolution:=optional;version=0,
+            javax.security.auth;resolution:=optional;version=0,
+            javax.security.auth.login;resolution:=optional;version=0,
+            javax.servlet;resolution:=optional;version=0,
+            javax.servlet.http;resolution:=optional;version=0,
+            javax.xml.parsers;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.beans*;version="[4,5)",
+            org.springframework.context*;version="[4,5)",
+            org.springframework.core*;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.http;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;resolution:=optional;version="[4,5)",
+            org.springframework.security.access*;version="[4.1,5)",
+            org.springframework.security.authentication*;version="[4.1,5)",
+            org.springframework.security.core*;version="[4.1,5)",
+            org.springframework.security.concurrent*;version="[4.1,5)",
+            org.springframework.security.crypto.codec;version="[4.1,5)",
+            org.springframework.web*;version="[4,5)",
+            org.w3c.dom;resolution:=optional;version=0,
+            org.xml.sax;resolution:=optional;version=0
+        </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/67580dfd/spring-security-web-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-web-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-web-4.1.0.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..957919b
--- /dev/null
+++ b/spring-security-web-4.1.0.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 Web module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m