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 2018/06/28 12:15:37 UTC

[01/17] servicemix-bundles git commit: [SM-3742] Create OSGi bundle for Thymeleaf 3.0.9 [Forced Update!]

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 73eb0b5bd -> b1d0a47d0 (forced update)


[SM-3742] Create OSGi bundle for Thymeleaf 3.0.9


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

Branch: refs/heads/master
Commit: c91afe704e7e20ec15b62ca2399c8c45cecc7002
Parents: 0fb463c
Author: Oliver Lietz <ol...@apache.org>
Authored: Tue Jun 12 22:43:48 2018 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 28 14:12:12 2018 +0200

----------------------------------------------------------------------
 pom.xml                                         |  1 +
 thymeleaf-3.0.9.RELEASE/pom.xml                 | 99 ++++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     | 15 +++
 3 files changed, 115 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c91afe70/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 32f2c29..0d6ed86 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,7 @@
     <modules>
         <module>c3p0-0.9.5.2</module>
         <module>aws-java-sdk-1.11.344</module>
+        <module>thymeleaf-3.0.9.RELEASE</module>
         <module>aws-java-sdk-1.10.52</module>
     </modules>
 

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c91afe70/thymeleaf-3.0.9.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/thymeleaf-3.0.9.RELEASE/pom.xml b/thymeleaf-3.0.9.RELEASE/pom.xml
new file mode 100644
index 0000000..0c0f9e5
--- /dev/null
+++ b/thymeleaf-3.0.9.RELEASE/pom.xml
@@ -0,0 +1,99 @@
+<?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>13</version>
+    <relativePath>../bundles-pom/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>org.apache.servicemix.bundles.thymeleaf</artifactId>
+  <version>3.0.9.RELEASE_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>
+  </scm>
+
+  <properties>
+    <pkgGroupId>org.thymeleaf</pkgGroupId>
+    <pkgArtifactId>thymeleaf</pkgArtifactId>
+    <pkgVersion>3.0.9.RELEASE</pkgVersion>
+    <servicemix.osgi.export.pkg>
+      org.thymeleaf
+    </servicemix.osgi.export.pkg>
+    <servicemix.osgi.import.pkg>
+      javax.servlet.*;resolution:=optional,
+      com.fasterxml.jackson.*;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>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <configuration>
+          <artifactSet>
+            <includes>
+              <include>${pkgGroupId}:${pkgArtifactId}</include>
+            </includes>
+          </artifactSet>
+          <filters>
+            <filter>
+              <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+              <includes>
+                <include>**/*.dtd</include>
+                <include>**/*.css</include>
+              </includes>
+            </filter>
+          </filters>
+          <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+          <createDependencyReducedPom>true</createDependencyReducedPom>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c91afe70/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info b/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..cc9a32f
--- /dev/null
+++ b/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,15 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Thymeleaf is a modern server-side Java template engine for both web and standalone environments.
+
+    Thymeleaf's main goal is to bring elegant natural templates to your development workflow — HTML that can be correctly displayed in browsers and also work as static prototypes, allowing for stronger collaboration in development teams.
+
+    With modules for Spring Framework, a host of integrations with your favourite tools, and the ability to plug in your own functionality, Thymeleaf is ideal for modern-day HTML5 JVM web development — although there is much more it can do.
+
+ \u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://www.thymeleaf.org\u001B[0m


[13/17] servicemix-bundles git commit: [SM-3745] Create OSGi bundles for Spring 5.0.7.RELEASE

Posted by ac...@apache.org.
[SM-3745] Create OSGi bundles for Spring 5.0.7.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/899ecb96
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/899ecb96
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/899ecb96

Branch: refs/heads/master
Commit: 899ecb96f5d02c7aaf56f9071fc449fee5a20d64
Parents: 5060d6f
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Thu Jun 21 13:10:29 2018 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 28 14:13:40 2018 +0200

----------------------------------------------------------------------
 pom.xml                                         |  18 ++
 spring-aop-5.0.6.RELEASE/pom.xml                | 176 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-aop-5.0.7.RELEASE/pom.xml                | 175 +++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-aspects-5.0.6.RELEASE/pom.xml            | 146 -----------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-aspects-5.0.7.RELEASE/pom.xml            | 145 +++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-beans-5.0.6.RELEASE/pom.xml              | 141 ----------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-beans-5.0.7.RELEASE/pom.xml              | 140 ++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-context-5.0.6.RELEASE/pom.xml            | 248 ------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-context-5.0.7.RELEASE/pom.xml            | 247 ++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-context-support-5.0.6.RELEASE/pom.xml    | 204 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-context-support-5.0.7.RELEASE/pom.xml    | 203 +++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-core-5.0.6.RELEASE/pom.xml               | 149 -----------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-core-5.0.7.RELEASE/pom.xml               | 148 +++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-expression-5.0.6.RELEASE/pom.xml         | 123 ---------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-expression-5.0.7.RELEASE/pom.xml         | 122 +++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-instrument-5.0.6.RELEASE/pom.xml         | 116 ---------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-instrument-5.0.7.RELEASE/pom.xml         | 115 ++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-jdbc-5.0.6.RELEASE/pom.xml               | 173 ------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-jdbc-5.0.7.RELEASE/pom.xml               | 172 ++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-jms-5.0.6.RELEASE/pom.xml                | 235 -----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-jms-5.0.7.RELEASE/pom.xml                | 234 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-messaging-5.0.6.RELEASE/pom.xml          | 179 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-messaging-5.0.7.RELEASE/pom.xml          | 178 +++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-orm-5.0.6.RELEASE/pom.xml                | 261 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-orm-5.0.7.RELEASE/pom.xml                | 260 ++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-oxm-5.0.6.RELEASE/pom.xml                | 174 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-oxm-5.0.7.RELEASE/pom.xml                | 173 ++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-test-5.0.6.RELEASE/pom.xml               | 226 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-test-5.0.7.RELEASE/pom.xml               | 225 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-tx-5.0.6.RELEASE/pom.xml                 | 175 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-tx-5.0.7.RELEASE/pom.xml                 | 174 +++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-web-5.0.6.RELEASE/pom.xml                | 214 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-web-5.0.7.RELEASE/pom.xml                | 213 +++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-webmvc-5.0.6.RELEASE/pom.xml             | 222 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-webmvc-5.0.7.RELEASE/pom.xml             | 221 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-websocket-5.0.6.RELEASE/pom.xml          | 223 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-websocket-5.0.7.RELEASE/pom.xml          | 222 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 73 files changed, 3583 insertions(+), 3583 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9c41da4..0e72a25 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,6 +65,24 @@
         <module>spring-webmvc-portlet-4.3.18.RELEASE</module>
         <module>spring-websocket-4.3.18.RELEASE</module>
         <module>libphonenumber-8.9.8</module>
+        <module>spring-aop-5.0.7.RELEASE</module>
+        <module>spring-aspects-5.0.7.RELEASE</module>
+        <module>spring-beans-5.0.7.RELEASE</module>
+        <module>spring-context-5.0.7.RELEASE</module>
+        <module>spring-context-support-5.0.7.RELEASE</module>
+        <module>spring-core-5.0.7.RELEASE</module>
+        <module>spring-expression-5.0.7.RELEASE</module>
+        <module>spring-instrument-5.0.7.RELEASE</module>
+        <module>spring-jdbc-5.0.7.RELEASE</module>
+        <module>spring-jms-5.0.7.RELEASE</module>
+        <module>spring-messaging-5.0.7.RELEASE</module>
+        <module>spring-orm-5.0.7.RELEASE</module>
+        <module>spring-oxm-5.0.7.RELEASE</module>
+        <module>spring-test-5.0.7.RELEASE</module>
+        <module>spring-tx-5.0.7.RELEASE</module>
+        <module>spring-web-5.0.7.RELEASE</module>
+        <module>spring-webmvc-5.0.7.RELEASE</module>
+        <module>spring-websocket-5.0.7.RELEASE</module>
         <module>aws-java-sdk-1.10.52</module>
     </modules>
 

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-aop-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aop-5.0.6.RELEASE/pom.xml b/spring-aop-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index bf21f58..0000000
--- a/spring-aop-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,176 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-aop</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.jamonapi;version="[2.8,3)";resolution:=optional,
-            com.jamonapi.utils;version="[2.8,3)";resolution:=optional,
-            org.aopalliance.aop;version="[1,2)";resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.commons.pool;version="[1.6,2)";resolution:=optional,
-            org.apache.commons.pool.impl;version="[1.6,2)";resolution:=optional,
-            org.apache.commons.pool2;version="[2.4,3)";resolution:=optional, 
-            org.apache.commons.pool2.impl;version="[2.4,3)";resolution:=optional,
-            org.aspectj.bridge;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.util;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.ast;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.internal.tools;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.patterns;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.reflect;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.tools;version="[1.8.6,2)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cglib.core;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cglib.transform.impl;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert.converter;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.core.task.support;version="[${pkgVersion},5.1)",
-            org.springframework.objenesis;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.comparator;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
-            org.springframework.util.xml;version="[${pkgVersion},5.1)",
-            org.w3c.dom;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>aopalliance</groupId>
-                    <artifactId>aopalliance</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>aopalliance</groupId>
-                    <artifactId>aopalliance</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-aop-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aop-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aop-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 4481170..0000000
--- a/spring-aop-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework AOP 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/899ecb96/spring-aop-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aop-5.0.7.RELEASE/pom.xml b/spring-aop-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..fbf7bb8
--- /dev/null
+++ b/spring-aop-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,175 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-aop</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.jamonapi;version="[2.8,3)";resolution:=optional,
+            com.jamonapi.utils;version="[2.8,3)";resolution:=optional,
+            org.aopalliance.aop;version="[1,2)";resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.commons.pool;version="[1.6,2)";resolution:=optional,
+            org.apache.commons.pool.impl;version="[1.6,2)";resolution:=optional,
+            org.apache.commons.pool2;version="[2.4,3)";resolution:=optional, 
+            org.apache.commons.pool2.impl;version="[2.4,3)";resolution:=optional,
+            org.aspectj.bridge;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.util;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.ast;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.internal.tools;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.patterns;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.reflect;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.tools;version="[1.8.6,2)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cglib.core;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cglib.transform.impl;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert.converter;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.core.task.support;version="[${pkgVersion},5.1)",
+            org.springframework.objenesis;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.comparator;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
+            org.springframework.util.xml;version="[${pkgVersion},5.1)",
+            org.w3c.dom;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>aopalliance</groupId>
+                    <artifactId>aopalliance</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>aopalliance</groupId>
+                    <artifactId>aopalliance</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-aop-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aop-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aop-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..4481170
--- /dev/null
+++ b/spring-aop-5.0.7.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 AOP 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/899ecb96/spring-aspects-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aspects-5.0.6.RELEASE/pom.xml b/spring-aspects-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 922ac60..0000000
--- a/spring-aspects-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,146 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-aspects</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-aspects</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.cache.annotation;resolution:=optional,
-            javax.interceptor;resolution:=optional,
-            javax.transaction;version="[1.2,2)";resolution:=optional,
-            org.aspectj.internal.lang.annotation;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
-            org.springframework.aop.interceptor;version="[${pkgVersion},5.1)",
-            org.springframework.beans;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.wiring;version="[${pkgVersion},5.1)",
-            org.springframework.cache;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.jcache.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.jcache.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.dao;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.orm.jpa;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.aspectj</groupId>
-                    <artifactId>aspectjweaver</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.aspectj</groupId>
-                    <artifactId>aspectjweaver</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>META-INF/aop.xml</include>
-                                    </includes>
-                                </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/899ecb96/spring-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 1e91025..0000000
--- a/spring-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Aspects 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/899ecb96/spring-aspects-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aspects-5.0.7.RELEASE/pom.xml b/spring-aspects-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..193e33c
--- /dev/null
+++ b/spring-aspects-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,145 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-aspects</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-aspects</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.cache.annotation;resolution:=optional,
+            javax.interceptor;resolution:=optional,
+            javax.transaction;version="[1.2,2)";resolution:=optional,
+            org.aspectj.internal.lang.annotation;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
+            org.springframework.aop.interceptor;version="[${pkgVersion},5.1)",
+            org.springframework.beans;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.wiring;version="[${pkgVersion},5.1)",
+            org.springframework.cache;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.jcache.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.jcache.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.dao;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.orm.jpa;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)"
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.aspectj</groupId>
+                    <artifactId>aspectjweaver</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.aspectj</groupId>
+                    <artifactId>aspectjweaver</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>META-INF/aop.xml</include>
+                                    </includes>
+                                </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/899ecb96/spring-aspects-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aspects-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aspects-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1e91025
--- /dev/null
+++ b/spring-aspects-5.0.7.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 Aspects 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/899ecb96/spring-beans-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-beans-5.0.6.RELEASE/pom.xml b/spring-beans-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 16a9a6e..0000000
--- a/spring-beans-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,141 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-beans</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.el;version="[1,3)";resolution:=optional,
-            javax.inject;version="[1,2)";resolution:=optional,
-            javax.xml.parsers;resolution:=optional,
-            groovy.lang;resolution:=optional,
-            groovy.xml;resolution:=optional,
-            org.codehaus.groovy.reflection;resolution:=optional,
-            org.codehaus.groovy.runtime;resolution:=optional,
-            org.codehaus.groovy.runtime.callsite;resolution:=optional,
-            org.codehaus.groovy.runtime.typehandling;resolution:=optional,
-            org.codehaus.groovy.runtime.wrappers;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.springframework.cglib*;version="[${pkgVersion},5.1)",
-            org.springframework.core*;version="[${pkgVersion},5.1)",
-            org.springframework.util*;version="[${pkgVersion},5.1)",
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional,
-            org.yaml.snakeyaml;resolution:=optional,
-            org.yaml.snakeyaml.constructor;resolution:=optional,
-            org.yaml.snakeyaml.error;resolution:=optional,
-            org.yaml.snakeyaml.nodes;resolution:=optional,
-            org.yaml.snakeyaml.parser;resolution:=optional,
-            org.yaml.snakeyaml.reader;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>**/*.dtd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-beans-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-beans-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-beans-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8e776f6..0000000
--- a/spring-beans-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Beans 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/899ecb96/spring-beans-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-beans-5.0.7.RELEASE/pom.xml b/spring-beans-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..0b954bd
--- /dev/null
+++ b/spring-beans-5.0.7.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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-beans</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.el;version="[1,3)";resolution:=optional,
+            javax.inject;version="[1,2)";resolution:=optional,
+            javax.xml.parsers;resolution:=optional,
+            groovy.lang;resolution:=optional,
+            groovy.xml;resolution:=optional,
+            org.codehaus.groovy.reflection;resolution:=optional,
+            org.codehaus.groovy.runtime;resolution:=optional,
+            org.codehaus.groovy.runtime.callsite;resolution:=optional,
+            org.codehaus.groovy.runtime.typehandling;resolution:=optional,
+            org.codehaus.groovy.runtime.wrappers;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.springframework.cglib*;version="[${pkgVersion},5.1)",
+            org.springframework.core*;version="[${pkgVersion},5.1)",
+            org.springframework.util*;version="[${pkgVersion},5.1)",
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional,
+            org.yaml.snakeyaml;resolution:=optional,
+            org.yaml.snakeyaml.constructor;resolution:=optional,
+            org.yaml.snakeyaml.error;resolution:=optional,
+            org.yaml.snakeyaml.nodes;resolution:=optional,
+            org.yaml.snakeyaml.parser;resolution:=optional,
+            org.yaml.snakeyaml.reader;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.dtd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-beans-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-beans-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-beans-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..8e776f6
--- /dev/null
+++ b/spring-beans-5.0.7.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 Beans 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/899ecb96/spring-context-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-5.0.6.RELEASE/pom.xml b/spring-context-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 9d8316f..0000000
--- a/spring-context-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,248 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-context</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-context</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            bsh;version="[2,3)";resolution:=optional,
-            com.ibm.websphere.management;resolution:=optional,
-            com.sun.net.httpserver;resolution:=optional,
-            edu.emory.mathcs.backport.java.util.concurrent;version="[3,4)";resolution:=optional,
-            groovy.lang;version="[2.4,3)";resolution:=optional,
-            javax.annotation;resolution:=optional,
-            javax.ejb;resolution:=optional,
-            javax.enterprise.concurrent;resolution:=optional,
-            javax.inject;resolution:=optional,
-            javax.interceptor;resolution:=optional,
-            javax.jms;resolution:=optional,
-            javax.management;resolution:=optional,
-            javax.management.modelmbean;resolution:=optional,
-            javax.management.openmbean;resolution:=optional,
-            javax.management.remote;resolution:=optional,
-            javax.money;resolution:=optional, 
-            javax.money.format;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.persistence;resolution:=optional,
-            javax.persistence.spi;resolution:=optional,
-            javax.rmi;resolution:=optional,
-            javax.script;resolution:=optional,
-            javax.validation;resolution:=optional,
-            javax.validation.bootstrap;resolution:=optional,
-            javax.validation.constraints;resolution:=optional,
-            javax.validation.constraintvalidation;resolution:=optional,
-            javax.validation.executable;resolution:=optional,
-            javax.validation.groups;resolution:=optional,
-            javax.validation.metadata;resolution:=optional,
-            javax.validation.spi;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            javax.xml.ws;resolution:=optional,
-            org.aopalliance.aop;version="[1,2)";resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.aspectj.weaver.loadtime;version="[1.8.6,2)";resolution:=optional,
-            org.codehaus.groovy.control;version="[2.4,3)";resolution:=optional,
-            org.codehaus.groovy.control.customizers;version="[2.4,3)";resolution:=optional,
-            org.hibernate.validator;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.messageinterpolation;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.method;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.resourceloading;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.spi.resourceloading;version="[4,6)";resolution:=optional,
-            org.joda.time;version="[2,3)";resolution:=optional,
-            org.joda.time.format;version="[2,3)";resolution:=optional,
-            org.jruby;version="[1.7,2)";resolution:=optional,
-            org.jruby.ast;version="[1.7,2)";resolution:=optional,
-            org.jruby.exceptions;version="[1.7,2)";resolution:=optional,
-            org.jruby.javasupport;version="[1.7,2)";resolution:=optional,
-            org.jruby.runtime;version="[1.7,2)";resolution:=optional,
-            org.jruby.runtime.builtin;version="[1.7,2)";resolution:=optional,
-            org.omg.CORBA;resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework.adapter;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.scope;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.target;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.target.dynamic;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.asm;version="[${pkgVersion},5.1)",
-            org.springframework.beans;version="[${pkgVersion},5.1)",
-            org.springframework.beans.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.groovy;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.propertyeditors;version="[${pkgVersion},5.1)",
-            org.springframework.beans.support;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.core;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.transform;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.reflect;version="[${pkgVersion},5.1)",
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert.converter;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.env;version="[${pkgVersion},5.1)",
-            org.springframework.core.io;version="[${pkgVersion},5.1)",
-            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.serializer.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.core.task.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.type;version="[${pkgVersion},5.1)",
-            org.springframework.core.type.classreading;version="[${pkgVersion},5.1)",
-            org.springframework.core.type.filter;version="[${pkgVersion},5.1)",
-            org.springframework.expression;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.expression.spel;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.expression.spel.standard;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.expression.spel.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.instrument;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.objenesis;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.orm.jpa.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
-            org.springframework.util.xml;version="[${pkgVersion},5.1)",
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>**/*.xml</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-context-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 4c368f9..0000000
--- a/spring-context-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Context module.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[03/17] servicemix-bundles git commit: [SM-3744] Create OSGi bundles for Spring 4.3.18.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-web-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-web-4.3.17.RELEASE/pom.xml b/spring-web-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 69c69fd..0000000
--- a/spring-web-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,214 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-web</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-web</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.squareup.okhttp.internal.http;resolution:=optional,
-            javax.net.ssl, okhttp3.internal.http;resolution:=optional,
-            com.caucho.*;version="[4,5)";resolution:=optional,
-            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
-            com.google.gson;version="[2.3,3)";resolution:=optional,
-            com.google.gson.reflect;version="[2.3,3)";resolution:=optional,
-            com.google.protobuf;version="[2.6,3)";resolution:=optional,
-            com.googlecode.protobuf.format;resolution:=optional,
-            com.squareup.okhttp;version="[2.4,3)";resolution:=optional,
-            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
-            com.sun.net.*;resolution:=optional,
-            groovy.lang;version="[2.4,3)";resolution:=optional,
-            io.netty.bootstrap;resolution:=optional,
-            io.netty.buffer;resolution:=optional, 
-            io.netty.channel;resolution:=optional, 
-            io.netty.channel.nio;resolution:=optional, 
-            io.netty.channel.socket;resolution:=optional, 
-            io.netty.channel.socket.nio;resolution:=optional, 
-            io.netty.handler.codec.http;resolution:=optional, 
-            io.netty.handler.ssl;resolution:=optional, 
-            io.netty.handler.timeout;resolution:=optional, 
-            io.netty.util.concurrent;resolution:=optional,
-            javax.activation.*;resolution:=optional,
-            javax.el.*;resolution:=optional,
-            javax.faces.*;resolution:=optional,
-            javax.imageio.*;resolution:=optional,
-            javax.jws.*;resolution:=optional,
-            javax.mail.internet;resolution:=optional,
-            javax.portlet.*;resolution:=optional,
-            javax.servlet,
-            javax.servlet.http,
-            javax.servlet.annotation;resolution:=optional,
-            javax.servlet.jsp.*;resolution:=optional,
-            javax.validation;resolution:=optional,
-            javax.xml.*;resolution:=optional,
-            okhttp3;resolution:=optional,
-            org.aopalliance.*;version="[1,2)",
-            org.apache.commons.fileupload.*;version="[1.3,2)";resolution:=optional,
-            org.apache.commons.logging.*;version="[1.1.1,2)",
-            org.apache.http.*;version="[4,5)";resolution:=optional,
-            org.apache.log4j.*;version="[1.2,2)";resolution:=optional,
-            org.springframework.aop.*;version="[${pkgVersion},4.4)",
-            org.springframework.beans.*;version="[${pkgVersion},4.4)",
-            org.springframework.context.*;version="[${pkgVersion},4.4)",
-            org.springframework.core.*;version="[${pkgVersion},4.4)",
-            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jndi.*;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.oxm.*;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.remoting.*;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype.*;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.ui.*;version="[${pkgVersion},4.4)",
-            org.springframework.util.*;version="[${pkgVersion},4.4)",
-            org.springframework.validation.*;version="[${pkgVersion},4.4)", 
-            org.joda.time;version="[2,3)";resolution:=optional,
-            org.joda.time.format;version="[2,3)";resolution:=optional,
-            com.fasterxml.jackson.datatype.joda.*;version="[2,3)";resolution:=optional,
-            org.xml.sax.*;resolution:=optional,
-            org.w3c.dom.*;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            META-INF.services*
-        </servicemix.osgi.private.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-oxm</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-oxm</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.properties</include>
-                                        <include>META-INF/web-fragment.xml</include>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </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/24d92f69/spring-web-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-web-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-web-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 5746040..0000000
--- a/spring-web-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Web 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/24d92f69/spring-web-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-web-4.3.18.RELEASE/pom.xml b/spring-web-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..8aa1336
--- /dev/null
+++ b/spring-web-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,213 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-web</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-web</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.squareup.okhttp.internal.http;resolution:=optional,
+            javax.net.ssl, okhttp3.internal.http;resolution:=optional,
+            com.caucho.*;version="[4,5)";resolution:=optional,
+            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
+            com.google.gson;version="[2.3,3)";resolution:=optional,
+            com.google.gson.reflect;version="[2.3,3)";resolution:=optional,
+            com.google.protobuf;version="[2.6,3)";resolution:=optional,
+            com.googlecode.protobuf.format;resolution:=optional,
+            com.squareup.okhttp;version="[2.4,3)";resolution:=optional,
+            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
+            com.sun.net.*;resolution:=optional,
+            groovy.lang;version="[2.4,3)";resolution:=optional,
+            io.netty.bootstrap;resolution:=optional,
+            io.netty.buffer;resolution:=optional, 
+            io.netty.channel;resolution:=optional, 
+            io.netty.channel.nio;resolution:=optional, 
+            io.netty.channel.socket;resolution:=optional, 
+            io.netty.channel.socket.nio;resolution:=optional, 
+            io.netty.handler.codec.http;resolution:=optional, 
+            io.netty.handler.ssl;resolution:=optional, 
+            io.netty.handler.timeout;resolution:=optional, 
+            io.netty.util.concurrent;resolution:=optional,
+            javax.activation.*;resolution:=optional,
+            javax.el.*;resolution:=optional,
+            javax.faces.*;resolution:=optional,
+            javax.imageio.*;resolution:=optional,
+            javax.jws.*;resolution:=optional,
+            javax.mail.internet;resolution:=optional,
+            javax.portlet.*;resolution:=optional,
+            javax.servlet,
+            javax.servlet.http,
+            javax.servlet.annotation;resolution:=optional,
+            javax.servlet.jsp.*;resolution:=optional,
+            javax.validation;resolution:=optional,
+            javax.xml.*;resolution:=optional,
+            okhttp3;resolution:=optional,
+            org.aopalliance.*;version="[1,2)",
+            org.apache.commons.fileupload.*;version="[1.3,2)";resolution:=optional,
+            org.apache.commons.logging.*;version="[1.1.1,2)",
+            org.apache.http.*;version="[4,5)";resolution:=optional,
+            org.apache.log4j.*;version="[1.2,2)";resolution:=optional,
+            org.springframework.aop.*;version="[${pkgVersion},4.4)",
+            org.springframework.beans.*;version="[${pkgVersion},4.4)",
+            org.springframework.context.*;version="[${pkgVersion},4.4)",
+            org.springframework.core.*;version="[${pkgVersion},4.4)",
+            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jndi.*;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.oxm.*;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.remoting.*;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype.*;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.ui.*;version="[${pkgVersion},4.4)",
+            org.springframework.util.*;version="[${pkgVersion},4.4)",
+            org.springframework.validation.*;version="[${pkgVersion},4.4)", 
+            org.joda.time;version="[2,3)";resolution:=optional,
+            org.joda.time.format;version="[2,3)";resolution:=optional,
+            com.fasterxml.jackson.datatype.joda.*;version="[2,3)";resolution:=optional,
+            org.xml.sax.*;resolution:=optional,
+            org.w3c.dom.*;resolution:=optional
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.private.pkg>
+            META-INF.services*
+        </servicemix.osgi.private.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-oxm</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-oxm</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.properties</include>
+                                        <include>META-INF/web-fragment.xml</include>
+                                        <include>META-INF/services/**</include>
+                                    </includes>
+                                </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/24d92f69/spring-web-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-web-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-web-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..5746040
--- /dev/null
+++ b/spring-web-4.3.18.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 Web 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/24d92f69/spring-webmvc-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-webmvc-4.3.17.RELEASE/pom.xml b/spring-webmvc-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 8ef903f..0000000
--- a/spring-webmvc-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,222 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-webmvc</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-webmvc</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.validation;resolution:=optional,
-            com.lowagie.text.*;version="[2,3)";resolution:=optional,
-            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
-            freemarker.*;version="[2.3,3)";resolution:=optional,
-            groovy.lang;version="[2.4,3)";resolution:=optional,
-            groovy.text;version="[2.4,3)";resolution:=optional,
-            groovy.text.markup;version="[2.4,3)";resolution:=optional,
-            javax.el.*;resolution:=optional,
-            javax.sql.*;resolution:=optional,
-            javax.script;resolution:=optional,
-            javax.servlet,
-            javax.servlet.http,
-            javax.servlet.jsp.*;resolution:=optional,
-            javax.xml.*;resolution:=optional,
-            jxl.*;version="[2.6,3)";resolution:=optional,
-            net.sf.jasperreports.*;version="[5,7)";resolution:=optional,
-            org.aopalliance.aop;resolution:=optional,
-            org.aopalliance.intercept;resolution:=optional,
-            org.apache.commons.logging.*;version="[1.1.1,2)";resolution:=optional,
-            org.apache.poi.*;version="[3,4)";resolution:=optional,
-            org.apache.tiles.request*;version="[1,2)";resolution:=optional,
-            org.apache.tiles.*;version="[2.2,4)";resolution:=optional,
-            org.apache.velocity.*;version="[1.7,2)";resolution:=optional,
-            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.target;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.*;version="[${pkgVersion},4.4)",
-            org.springframework.cache;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.*;version="[${pkgVersion},4.4)",
-            org.springframework.core.*;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.core;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cglib.reflect;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.expression.*;version="[${pkgVersion},4.4)",
-            org.springframework.format.*;version="[${pkgVersion},4.4)",
-            org.springframework.http.*;version="[${pkgVersion},4.4)",
-            org.springframework.oxm.*;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.objenesis;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scripting.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},4.4)",
-            org.springframework.ui.*;version="[${pkgVersion},4.4)",
-            org.springframework.util.*;version="[${pkgVersion},4.4)",
-            org.springframework.validation.*;version="[${pkgVersion},4.4)", 
-            org.springframework.validation.beanvalidation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.*;version="[${pkgVersion},4.4)",
-            org.webjars;resolution:=optional,
-            org.xml.sax.*;resolution:=optional,
-            org.w3c.dom.*;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context-support</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context-support</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.properties</include>
-                                        <include>**/*.ftl</include>
-                                        <include>**/*.vm</include>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-webmvc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-webmvc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-webmvc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 78b42bc..0000000
--- a/spring-webmvc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Web MVC 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/24d92f69/spring-webmvc-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-webmvc-4.3.18.RELEASE/pom.xml b/spring-webmvc-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..ea29428
--- /dev/null
+++ b/spring-webmvc-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,221 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-webmvc</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-webmvc</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.validation;resolution:=optional,
+            com.lowagie.text.*;version="[2,3)";resolution:=optional,
+            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
+            freemarker.*;version="[2.3,3)";resolution:=optional,
+            groovy.lang;version="[2.4,3)";resolution:=optional,
+            groovy.text;version="[2.4,3)";resolution:=optional,
+            groovy.text.markup;version="[2.4,3)";resolution:=optional,
+            javax.el.*;resolution:=optional,
+            javax.sql.*;resolution:=optional,
+            javax.script;resolution:=optional,
+            javax.servlet,
+            javax.servlet.http,
+            javax.servlet.jsp.*;resolution:=optional,
+            javax.xml.*;resolution:=optional,
+            jxl.*;version="[2.6,3)";resolution:=optional,
+            net.sf.jasperreports.*;version="[5,7)";resolution:=optional,
+            org.aopalliance.aop;resolution:=optional,
+            org.aopalliance.intercept;resolution:=optional,
+            org.apache.commons.logging.*;version="[1.1.1,2)";resolution:=optional,
+            org.apache.poi.*;version="[3,4)";resolution:=optional,
+            org.apache.tiles.request*;version="[1,2)";resolution:=optional,
+            org.apache.tiles.*;version="[2.2,4)";resolution:=optional,
+            org.apache.velocity.*;version="[1.7,2)";resolution:=optional,
+            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.target;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.*;version="[${pkgVersion},4.4)",
+            org.springframework.cache;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.*;version="[${pkgVersion},4.4)",
+            org.springframework.core.*;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.core;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cglib.reflect;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.expression.*;version="[${pkgVersion},4.4)",
+            org.springframework.format.*;version="[${pkgVersion},4.4)",
+            org.springframework.http.*;version="[${pkgVersion},4.4)",
+            org.springframework.oxm.*;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.objenesis;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scripting.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},4.4)",
+            org.springframework.ui.*;version="[${pkgVersion},4.4)",
+            org.springframework.util.*;version="[${pkgVersion},4.4)",
+            org.springframework.validation.*;version="[${pkgVersion},4.4)", 
+            org.springframework.validation.beanvalidation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.*;version="[${pkgVersion},4.4)",
+            org.webjars;resolution:=optional,
+            org.xml.sax.*;resolution:=optional,
+            org.w3c.dom.*;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context-support</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context-support</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.properties</include>
+                                        <include>**/*.ftl</include>
+                                        <include>**/*.vm</include>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-webmvc-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-webmvc-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-webmvc-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..78b42bc
--- /dev/null
+++ b/spring-webmvc-4.3.18.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 Web MVC 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/24d92f69/spring-webmvc-portlet-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-webmvc-portlet-4.3.17.RELEASE/pom.xml b/spring-webmvc-portlet-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 60a1faa..0000000
--- a/spring-webmvc-portlet-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,164 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-webmvc-portlet</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-webmvc-portlet</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.portlet;resolution:=optional,
-            javax.portlet.filter;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            org.apache.commons.fileupload;resolution:=optional,
-            org.apache.commons.fileupload.disk;resolution:=optional,
-            org.apache.commons.fileupload.portlet;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.i18n;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.env;version="[${pkgVersion},4.4)",
-            org.springframework.core.io;version="[${pkgVersion},4.4)",
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.style;version="[${pkgVersion},4.4)",
-            org.springframework.http;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.converter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.ui;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.validation.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.bind;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.bind.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.bind.annotation.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.bind.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.request;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.multipart;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.multipart.commons;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.mvc.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.util;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-webmvc</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/24d92f69/spring-webmvc-portlet-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-webmvc-portlet-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-webmvc-portlet-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 1927f99..0000000
--- a/spring-webmvc-portlet-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Web MVC Struts 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/24d92f69/spring-webmvc-portlet-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-webmvc-portlet-4.3.18.RELEASE/pom.xml b/spring-webmvc-portlet-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..0dc1292
--- /dev/null
+++ b/spring-webmvc-portlet-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,163 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-webmvc-portlet</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-webmvc-portlet</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.portlet;resolution:=optional,
+            javax.portlet.filter;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            org.apache.commons.fileupload;resolution:=optional,
+            org.apache.commons.fileupload.disk;resolution:=optional,
+            org.apache.commons.fileupload.portlet;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.i18n;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.env;version="[${pkgVersion},4.4)",
+            org.springframework.core.io;version="[${pkgVersion},4.4)",
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.style;version="[${pkgVersion},4.4)",
+            org.springframework.http;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.converter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.ui;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.validation.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.bind;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.bind.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.bind.annotation.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.bind.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.request;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.multipart;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.multipart.commons;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.mvc.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.util;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-webmvc</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/24d92f69/spring-webmvc-portlet-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-webmvc-portlet-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-webmvc-portlet-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1927f99
--- /dev/null
+++ b/spring-webmvc-portlet-4.3.18.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 Web MVC Struts 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/24d92f69/spring-websocket-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-websocket-4.3.17.RELEASE/pom.xml b/spring-websocket-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index bb76068..0000000
--- a/spring-websocket-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,223 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-websocket</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-websocket</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.fasterxml.jackson.core.io;resolution:=optional,
-            com.fasterxml.jackson.databind;resolution:=optional,
-            io.undertow.client;resolution:=optional,
-            io.undertow.connector;resolution:=optional,
-            io.undertow.server;resolution:=optional,
-            io.undertow.servlet.api;resolution:=optional,
-            io.undertow.servlet.websockets;resolution:=optional,
-            io.undertow.util;resolution:=optional,
-            io.undertow.websockets.core;resolution:=optional,
-            io.undertow.websockets.core.protocol;resolution:=optional,
-            io.undertow.websockets.core.protocol.version07;resolution:=optional,
-            io.undertow.websockets.core.protocol.version08;resolution:=optional,
-            io.undertow.websockets.core.protocol.version13;resolution:=optional,
-            io.undertow.websockets.jsr;resolution:=optional,
-            io.undertow.websockets.jsr.annotated;resolution:=optional,
-            io.undertow.websockets.jsr.handshake;resolution:=optional,
-            io.undertow.websockets.spi;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.websocket;resolution:=optional,
-            javax.websocket.server;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.tomcat.websocket.server;resolution:=optional,
-            org.eclipse.jetty.client;resolution:=optional,
-            org.eclipse.jetty.client.api;resolution:=optional,
-            org.eclipse.jetty.client.util;resolution:=optional,
-            org.eclipse.jetty.http;resolution:=optional,
-            org.eclipse.jetty.websocket.api;resolution:=optional,
-            org.eclipse.jetty.websocket.api.annotations;resolution:=optional,
-            org.eclipse.jetty.websocket.api.extensions;resolution:=optional,
-            org.eclipse.jetty.websocket.client;resolution:=optional,
-            org.eclipse.jetty.websocket.common;resolution:=optional,
-            org.eclipse.jetty.websocket.server;resolution:=optional,
-            org.eclipse.jetty.websocket.servlet;resolution:=optional,
-            org.glassfish.tyrus.core;resolution:=optional,
-            org.glassfish.tyrus.servlet;resolution:=optional,
-            org.glassfish.tyrus.server;resolution:=optional,
-            org.glassfish.tyrus.spi;resolution:=optional,
-            org.glassfish.tyrus.websockets;resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.http;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.client;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.converter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.converter.json;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.server;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.converter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.handler;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.handler.annotation.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.handler.invocation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.simp;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.simp.annotation.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.simp.broker;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.simp.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.simp.stomp;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.simp.user;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.messaging.tcp;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
-            org.springframework.util.xml;version="[${pkgVersion},4.4)",
-            org.springframework.web;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.client;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.cors;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.filter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.method;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.handler;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.util;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xnio;resolution:=optional,
-            org.xnio.channels;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-websocket-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-websocket-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-websocket-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index a3feb22..0000000
--- a/spring-websocket-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework WebSocket module.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[17/17] servicemix-bundles git commit: [SM-3748] Create OSGi bundle for gRPC 1.13.1

Posted by ac...@apache.org.
[SM-3748] Create OSGi bundle for gRPC 1.13.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/b1d0a47d
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/b1d0a47d
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/b1d0a47d

Branch: refs/heads/master
Commit: b1d0a47d0f722b9a56f5f1d39d979027173c7df3
Parents: d8e3065
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Fri Jun 22 17:10:38 2018 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 28 14:14:26 2018 +0200

----------------------------------------------------------------------
 grpc-1.12.0/pom.xml                             | 109 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  16 ---
 grpc-1.13.1/pom.xml                             | 108 ++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  16 +++
 pom.xml                                         |   1 +
 5 files changed, 125 insertions(+), 125 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b1d0a47d/grpc-1.12.0/pom.xml
----------------------------------------------------------------------
diff --git a/grpc-1.12.0/pom.xml b/grpc-1.12.0/pom.xml
deleted file mode 100644
index 67920c0..0000000
--- a/grpc-1.12.0/pom.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.grpc</artifactId>
-    <version>1.12.0_2-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: gRPC</name>
-    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar files.</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>io.grpc</pkgGroupId>
-        <pkgArtifactId>grpc-all</pkgArtifactId>
-        <pkgVersion>1.12.0</pkgVersion>
-        <servicemix.osgi.export.pkg>
-           io.grpc
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-           !com.google.rpc,
-           !org.mockito*,
-           !org.junit*,
-           !com.google.common.truth*,
-           *
-        </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>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b1d0a47d/grpc-1.12.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/grpc-1.12.0/src/main/resources/OSGI-INF/bundle.info b/grpc-1.12.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 4e8c421..0000000
--- a/grpc-1.12.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,16 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    gRPC is a modern open source high performance RPC framework that can
-    run in any environment. It can efficiently connect services in and 
-    across data centers with pluggable support for load balancing, tracing,
-    health checking and authentication. It is also applicable in last mile
-    of distributed computing to connect devices, mobile applications and
-    browsers to backend services.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.grpc.io/\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b1d0a47d/grpc-1.13.1/pom.xml
----------------------------------------------------------------------
diff --git a/grpc-1.13.1/pom.xml b/grpc-1.13.1/pom.xml
new file mode 100644
index 0000000..c623bec
--- /dev/null
+++ b/grpc-1.13.1/pom.xml
@@ -0,0 +1,108 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.grpc</artifactId>
+    <version>1.13.1_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: gRPC</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar files.</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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>io.grpc</pkgGroupId>
+        <pkgArtifactId>grpc-all</pkgArtifactId>
+        <pkgVersion>1.13.1</pkgVersion>
+        <servicemix.osgi.export.pkg>
+           io.grpc
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+           !com.google.rpc,
+           !org.mockito*,
+           !org.junit*,
+           !com.google.common.truth*,
+           *
+        </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>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b1d0a47d/grpc-1.13.1/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/grpc-1.13.1/src/main/resources/OSGI-INF/bundle.info b/grpc-1.13.1/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..4e8c421
--- /dev/null
+++ b/grpc-1.13.1/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,16 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    gRPC is a modern open source high performance RPC framework that can
+    run in any environment. It can efficiently connect services in and 
+    across data centers with pluggable support for load balancing, tracing,
+    health checking and authentication. It is also applicable in last mile
+    of distributed computing to connect devices, mobile applications and
+    browsers to backend services.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.grpc.io/\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b1d0a47d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d69fc24..713a532 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,6 +99,7 @@
         <module>spring-security-taglibs-5.0.6.RELEASE</module>
         <module>spring-security-test-5.0.6.RELEASE</module>
         <module>spring-security-web-5.0.6.RELEASE</module>
+        <module>grpc-1.13.1</module>
         <module>aws-java-sdk-1.10.52</module>
     </modules>
 


[09/17] servicemix-bundles git commit: [SM-3745] Create OSGi bundles for Spring 5.0.7.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-web-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-web-5.0.6.RELEASE/pom.xml b/spring-web-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 0f75e7f..0000000
--- a/spring-web-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,214 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-web</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-web</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.squareup.okhttp.internal.http;resolution:=optional,
-            javax.net.ssl, okhttp3.internal.http;resolution:=optional,
-            com.caucho.*;version="[4,5)";resolution:=optional,
-            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
-            com.google.gson;version="[2.3,3)";resolution:=optional,
-            com.google.gson.reflect;version="[2.3,3)";resolution:=optional,
-            com.google.protobuf;version="[2.6,3)";resolution:=optional,
-            com.googlecode.protobuf.format;resolution:=optional,
-            com.squareup.okhttp;version="[2.4,3)";resolution:=optional,
-            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
-            com.sun.net.*;resolution:=optional,
-            groovy.lang;version="[2.4,3)";resolution:=optional,
-            io.netty.bootstrap;resolution:=optional,
-            io.netty.buffer;resolution:=optional, 
-            io.netty.channel;resolution:=optional, 
-            io.netty.channel.nio;resolution:=optional, 
-            io.netty.channel.socket;resolution:=optional, 
-            io.netty.channel.socket.nio;resolution:=optional, 
-            io.netty.handler.codec.http;resolution:=optional, 
-            io.netty.handler.ssl;resolution:=optional, 
-            io.netty.handler.timeout;resolution:=optional, 
-            io.netty.util.concurrent;resolution:=optional,
-            javax.activation.*;resolution:=optional,
-            javax.el.*;resolution:=optional,
-            javax.faces.*;resolution:=optional,
-            javax.imageio.*;resolution:=optional,
-            javax.jws.*;resolution:=optional,
-            javax.mail.internet;resolution:=optional,
-            javax.portlet.*;resolution:=optional,
-            javax.servlet,
-            javax.servlet.http,
-            javax.servlet.annotation;resolution:=optional,
-            javax.servlet.jsp.*;resolution:=optional,
-            javax.validation;resolution:=optional,
-            javax.xml.*;resolution:=optional,
-            okhttp3;resolution:=optional,
-            org.aopalliance.*;version="[1,2)",
-            org.apache.commons.fileupload.*;version="[1.3,2)";resolution:=optional,
-            org.apache.commons.logging.*;version="[1.1.1,2)",
-            org.apache.http.*;version="[4,5)";resolution:=optional,
-            org.apache.log4j.*;version="[1.2,2)";resolution:=optional,
-            org.springframework.aop.*;version="[${pkgVersion},5.1)",
-            org.springframework.beans.*;version="[${pkgVersion},5.1)",
-            org.springframework.context.*;version="[${pkgVersion},5.1)",
-            org.springframework.core.*;version="[${pkgVersion},5.1)",
-            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jndi.*;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.oxm.*;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.remoting.*;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.stereotype.*;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.ui.*;version="[${pkgVersion},5.1)",
-            org.springframework.util.*;version="[${pkgVersion},5.1)",
-            org.springframework.validation.*;version="[${pkgVersion},5.1)", 
-            org.joda.time;version="[2,3)";resolution:=optional,
-            org.joda.time.format;version="[2,3)";resolution:=optional,
-            com.fasterxml.jackson.datatype.joda.*;version="[2,3)";resolution:=optional,
-            org.xml.sax.*;resolution:=optional,
-            org.w3c.dom.*;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            META-INF.services*
-        </servicemix.osgi.private.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-oxm</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-oxm</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.properties</include>
-                                        <include>META-INF/web-fragment.xml</include>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </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/899ecb96/spring-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 5746040..0000000
--- a/spring-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Web 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/899ecb96/spring-web-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-web-5.0.7.RELEASE/pom.xml b/spring-web-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..d2efb77
--- /dev/null
+++ b/spring-web-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,213 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-web</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-web</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.squareup.okhttp.internal.http;resolution:=optional,
+            javax.net.ssl, okhttp3.internal.http;resolution:=optional,
+            com.caucho.*;version="[4,5)";resolution:=optional,
+            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
+            com.google.gson;version="[2.3,3)";resolution:=optional,
+            com.google.gson.reflect;version="[2.3,3)";resolution:=optional,
+            com.google.protobuf;version="[2.6,3)";resolution:=optional,
+            com.googlecode.protobuf.format;resolution:=optional,
+            com.squareup.okhttp;version="[2.4,3)";resolution:=optional,
+            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
+            com.sun.net.*;resolution:=optional,
+            groovy.lang;version="[2.4,3)";resolution:=optional,
+            io.netty.bootstrap;resolution:=optional,
+            io.netty.buffer;resolution:=optional, 
+            io.netty.channel;resolution:=optional, 
+            io.netty.channel.nio;resolution:=optional, 
+            io.netty.channel.socket;resolution:=optional, 
+            io.netty.channel.socket.nio;resolution:=optional, 
+            io.netty.handler.codec.http;resolution:=optional, 
+            io.netty.handler.ssl;resolution:=optional, 
+            io.netty.handler.timeout;resolution:=optional, 
+            io.netty.util.concurrent;resolution:=optional,
+            javax.activation.*;resolution:=optional,
+            javax.el.*;resolution:=optional,
+            javax.faces.*;resolution:=optional,
+            javax.imageio.*;resolution:=optional,
+            javax.jws.*;resolution:=optional,
+            javax.mail.internet;resolution:=optional,
+            javax.portlet.*;resolution:=optional,
+            javax.servlet,
+            javax.servlet.http,
+            javax.servlet.annotation;resolution:=optional,
+            javax.servlet.jsp.*;resolution:=optional,
+            javax.validation;resolution:=optional,
+            javax.xml.*;resolution:=optional,
+            okhttp3;resolution:=optional,
+            org.aopalliance.*;version="[1,2)",
+            org.apache.commons.fileupload.*;version="[1.3,2)";resolution:=optional,
+            org.apache.commons.logging.*;version="[1.1.1,2)",
+            org.apache.http.*;version="[4,5)";resolution:=optional,
+            org.apache.log4j.*;version="[1.2,2)";resolution:=optional,
+            org.springframework.aop.*;version="[${pkgVersion},5.1)",
+            org.springframework.beans.*;version="[${pkgVersion},5.1)",
+            org.springframework.context.*;version="[${pkgVersion},5.1)",
+            org.springframework.core.*;version="[${pkgVersion},5.1)",
+            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jndi.*;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.oxm.*;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.remoting.*;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.stereotype.*;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.ui.*;version="[${pkgVersion},5.1)",
+            org.springframework.util.*;version="[${pkgVersion},5.1)",
+            org.springframework.validation.*;version="[${pkgVersion},5.1)", 
+            org.joda.time;version="[2,3)";resolution:=optional,
+            org.joda.time.format;version="[2,3)";resolution:=optional,
+            com.fasterxml.jackson.datatype.joda.*;version="[2,3)";resolution:=optional,
+            org.xml.sax.*;resolution:=optional,
+            org.w3c.dom.*;resolution:=optional
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.private.pkg>
+            META-INF.services*
+        </servicemix.osgi.private.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-oxm</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-oxm</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.properties</include>
+                                        <include>META-INF/web-fragment.xml</include>
+                                        <include>META-INF/services/**</include>
+                                    </includes>
+                                </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/899ecb96/spring-web-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-web-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-web-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..5746040
--- /dev/null
+++ b/spring-web-5.0.7.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 Web 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/899ecb96/spring-webmvc-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-webmvc-5.0.6.RELEASE/pom.xml b/spring-webmvc-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index aaa5468..0000000
--- a/spring-webmvc-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,222 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-webmvc</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-webmvc</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.validation;resolution:=optional,
-            com.lowagie.text.*;version="[2,3)";resolution:=optional,
-            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
-            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
-            freemarker.*;version="[2.3,3)";resolution:=optional,
-            groovy.lang;version="[2.4,3)";resolution:=optional,
-            groovy.text;version="[2.4,3)";resolution:=optional,
-            groovy.text.markup;version="[2.4,3)";resolution:=optional,
-            javax.el.*;resolution:=optional,
-            javax.sql.*;resolution:=optional,
-            javax.script;resolution:=optional,
-            javax.servlet,
-            javax.servlet.http,
-            javax.servlet.jsp.*;resolution:=optional,
-            javax.xml.*;resolution:=optional,
-            jxl.*;version="[2.6,3)";resolution:=optional,
-            net.sf.jasperreports.*;version="[5,7)";resolution:=optional,
-            org.aopalliance.aop;resolution:=optional,
-            org.aopalliance.intercept;resolution:=optional,
-            org.apache.commons.logging.*;version="[1.1.1,2)";resolution:=optional,
-            org.apache.poi.*;version="[3,4)";resolution:=optional,
-            org.apache.tiles.request*;version="[1,2)";resolution:=optional,
-            org.apache.tiles.*;version="[2.2,4)";resolution:=optional,
-            org.apache.velocity.*;version="[1.7,2)";resolution:=optional,
-            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.target;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.*;version="[${pkgVersion},5.1)",
-            org.springframework.cache;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.*;version="[${pkgVersion},5.1)",
-            org.springframework.core.*;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.core;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cglib.reflect;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.expression.*;version="[${pkgVersion},5.1)",
-            org.springframework.format.*;version="[${pkgVersion},5.1)",
-            org.springframework.http.*;version="[${pkgVersion},5.1)",
-            org.springframework.oxm.*;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.objenesis;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scripting.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},5.1)",
-            org.springframework.ui.*;version="[${pkgVersion},5.1)",
-            org.springframework.util.*;version="[${pkgVersion},5.1)",
-            org.springframework.validation.*;version="[${pkgVersion},5.1)", 
-            org.springframework.validation.beanvalidation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.*;version="[${pkgVersion},5.1)",
-            org.webjars;resolution:=optional,
-            org.xml.sax.*;resolution:=optional,
-            org.w3c.dom.*;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context-support</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context-support</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.properties</include>
-                                        <include>**/*.ftl</include>
-                                        <include>**/*.vm</include>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-webmvc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-webmvc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-webmvc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 78b42bc..0000000
--- a/spring-webmvc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Web MVC 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/899ecb96/spring-webmvc-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-webmvc-5.0.7.RELEASE/pom.xml b/spring-webmvc-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..2fe07b6
--- /dev/null
+++ b/spring-webmvc-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,221 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-webmvc</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-webmvc</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.validation;resolution:=optional,
+            com.lowagie.text.*;version="[2,3)";resolution:=optional,
+            com.rometools.rome.feed;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.atom;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.feed.rss;version="[1.5,2)";resolution:=optional,
+            com.rometools.rome.io;version="[1.5,2)";resolution:=optional,
+            freemarker.*;version="[2.3,3)";resolution:=optional,
+            groovy.lang;version="[2.4,3)";resolution:=optional,
+            groovy.text;version="[2.4,3)";resolution:=optional,
+            groovy.text.markup;version="[2.4,3)";resolution:=optional,
+            javax.el.*;resolution:=optional,
+            javax.sql.*;resolution:=optional,
+            javax.script;resolution:=optional,
+            javax.servlet,
+            javax.servlet.http,
+            javax.servlet.jsp.*;resolution:=optional,
+            javax.xml.*;resolution:=optional,
+            jxl.*;version="[2.6,3)";resolution:=optional,
+            net.sf.jasperreports.*;version="[5,7)";resolution:=optional,
+            org.aopalliance.aop;resolution:=optional,
+            org.aopalliance.intercept;resolution:=optional,
+            org.apache.commons.logging.*;version="[1.1.1,2)";resolution:=optional,
+            org.apache.poi.*;version="[3,4)";resolution:=optional,
+            org.apache.tiles.request*;version="[1,2)";resolution:=optional,
+            org.apache.tiles.*;version="[2.2,4)";resolution:=optional,
+            org.apache.velocity.*;version="[1.7,2)";resolution:=optional,
+            com.fasterxml.jackson.*;version="[2,3)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.target;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.*;version="[${pkgVersion},5.1)",
+            org.springframework.cache;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.*;version="[${pkgVersion},5.1)",
+            org.springframework.core.*;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.core;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cglib.reflect;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.expression.*;version="[${pkgVersion},5.1)",
+            org.springframework.format.*;version="[${pkgVersion},5.1)",
+            org.springframework.http.*;version="[${pkgVersion},5.1)",
+            org.springframework.oxm.*;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.objenesis;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scripting.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},5.1)",
+            org.springframework.ui.*;version="[${pkgVersion},5.1)",
+            org.springframework.util.*;version="[${pkgVersion},5.1)",
+            org.springframework.validation.*;version="[${pkgVersion},5.1)", 
+            org.springframework.validation.beanvalidation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.*;version="[${pkgVersion},5.1)",
+            org.webjars;resolution:=optional,
+            org.xml.sax.*;resolution:=optional,
+            org.w3c.dom.*;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context-support</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context-support</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.properties</include>
+                                        <include>**/*.ftl</include>
+                                        <include>**/*.vm</include>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-webmvc-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-webmvc-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-webmvc-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..78b42bc
--- /dev/null
+++ b/spring-webmvc-5.0.7.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 Web MVC 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/899ecb96/spring-websocket-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-websocket-5.0.6.RELEASE/pom.xml b/spring-websocket-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 2011939..0000000
--- a/spring-websocket-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,223 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-websocket</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-websocket</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.fasterxml.jackson.core.io;resolution:=optional,
-            com.fasterxml.jackson.databind;resolution:=optional,
-            io.undertow.client;resolution:=optional,
-            io.undertow.connector;resolution:=optional,
-            io.undertow.server;resolution:=optional,
-            io.undertow.servlet.api;resolution:=optional,
-            io.undertow.servlet.websockets;resolution:=optional,
-            io.undertow.util;resolution:=optional,
-            io.undertow.websockets.core;resolution:=optional,
-            io.undertow.websockets.core.protocol;resolution:=optional,
-            io.undertow.websockets.core.protocol.version07;resolution:=optional,
-            io.undertow.websockets.core.protocol.version08;resolution:=optional,
-            io.undertow.websockets.core.protocol.version13;resolution:=optional,
-            io.undertow.websockets.jsr;resolution:=optional,
-            io.undertow.websockets.jsr.annotated;resolution:=optional,
-            io.undertow.websockets.jsr.handshake;resolution:=optional,
-            io.undertow.websockets.spi;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.websocket;resolution:=optional,
-            javax.websocket.server;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.tomcat.websocket.server;resolution:=optional,
-            org.eclipse.jetty.client;resolution:=optional,
-            org.eclipse.jetty.client.api;resolution:=optional,
-            org.eclipse.jetty.client.util;resolution:=optional,
-            org.eclipse.jetty.http;resolution:=optional,
-            org.eclipse.jetty.websocket.api;resolution:=optional,
-            org.eclipse.jetty.websocket.api.annotations;resolution:=optional,
-            org.eclipse.jetty.websocket.api.extensions;resolution:=optional,
-            org.eclipse.jetty.websocket.client;resolution:=optional,
-            org.eclipse.jetty.websocket.common;resolution:=optional,
-            org.eclipse.jetty.websocket.server;resolution:=optional,
-            org.eclipse.jetty.websocket.servlet;resolution:=optional,
-            org.glassfish.tyrus.core;resolution:=optional,
-            org.glassfish.tyrus.servlet;resolution:=optional,
-            org.glassfish.tyrus.server;resolution:=optional,
-            org.glassfish.tyrus.spi;resolution:=optional,
-            org.glassfish.tyrus.websockets;resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.http;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http.client;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http.converter;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http.converter.json;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http.server;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.converter;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.handler;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.handler.annotation.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.handler.invocation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.simp;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.simp.annotation.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.simp.broker;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.simp.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.simp.stomp;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.simp.user;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.messaging.tcp;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
-            org.springframework.util.xml;version="[${pkgVersion},5.1)",
-            org.springframework.web;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.client;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.cors;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.filter;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.method;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.handler;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.util;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xnio;resolution:=optional,
-            org.xnio.channels;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-web</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-websocket-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-websocket-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-websocket-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index a3feb22..0000000
--- a/spring-websocket-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework WebSocket 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/899ecb96/spring-websocket-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-websocket-5.0.7.RELEASE/pom.xml b/spring-websocket-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..867990e
--- /dev/null
+++ b/spring-websocket-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,222 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-websocket</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-websocket</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson.core.io;resolution:=optional,
+            com.fasterxml.jackson.databind;resolution:=optional,
+            io.undertow.client;resolution:=optional,
+            io.undertow.connector;resolution:=optional,
+            io.undertow.server;resolution:=optional,
+            io.undertow.servlet.api;resolution:=optional,
+            io.undertow.servlet.websockets;resolution:=optional,
+            io.undertow.util;resolution:=optional,
+            io.undertow.websockets.core;resolution:=optional,
+            io.undertow.websockets.core.protocol;resolution:=optional,
+            io.undertow.websockets.core.protocol.version07;resolution:=optional,
+            io.undertow.websockets.core.protocol.version08;resolution:=optional,
+            io.undertow.websockets.core.protocol.version13;resolution:=optional,
+            io.undertow.websockets.jsr;resolution:=optional,
+            io.undertow.websockets.jsr.annotated;resolution:=optional,
+            io.undertow.websockets.jsr.handshake;resolution:=optional,
+            io.undertow.websockets.spi;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.websocket;resolution:=optional,
+            javax.websocket.server;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.tomcat.websocket.server;resolution:=optional,
+            org.eclipse.jetty.client;resolution:=optional,
+            org.eclipse.jetty.client.api;resolution:=optional,
+            org.eclipse.jetty.client.util;resolution:=optional,
+            org.eclipse.jetty.http;resolution:=optional,
+            org.eclipse.jetty.websocket.api;resolution:=optional,
+            org.eclipse.jetty.websocket.api.annotations;resolution:=optional,
+            org.eclipse.jetty.websocket.api.extensions;resolution:=optional,
+            org.eclipse.jetty.websocket.client;resolution:=optional,
+            org.eclipse.jetty.websocket.common;resolution:=optional,
+            org.eclipse.jetty.websocket.server;resolution:=optional,
+            org.eclipse.jetty.websocket.servlet;resolution:=optional,
+            org.glassfish.tyrus.core;resolution:=optional,
+            org.glassfish.tyrus.servlet;resolution:=optional,
+            org.glassfish.tyrus.server;resolution:=optional,
+            org.glassfish.tyrus.spi;resolution:=optional,
+            org.glassfish.tyrus.websockets;resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.http;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http.client;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http.converter;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http.converter.json;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http.server;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.converter;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.handler;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.handler.annotation.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.handler.invocation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.simp;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.simp.annotation.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.simp.broker;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.simp.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.simp.stomp;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.simp.user;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.messaging.tcp;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
+            org.springframework.util.xml;version="[${pkgVersion},5.1)",
+            org.springframework.web;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.client;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.cors;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.filter;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.method;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.handler;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.util;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xnio;resolution:=optional,
+            org.xnio.channels;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-websocket-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-websocket-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-websocket-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..a3feb22
--- /dev/null
+++ b/spring-websocket-5.0.7.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 WebSocket module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[07/17] servicemix-bundles git commit: [SM-3744] Create OSGi bundles for Spring 4.3.18.RELEASE

Posted by ac...@apache.org.
[SM-3744] Create OSGi bundles for Spring 4.3.18.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/24d92f69
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/24d92f69
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/24d92f69

Branch: refs/heads/master
Commit: 24d92f69d6e02f775d429f9a2f4bdfe5b609fa9c
Parents: c91afe7
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Tue Jun 19 20:45:07 2018 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 28 14:12:49 2018 +0200

----------------------------------------------------------------------
 pom.xml                                         |  19 ++
 spring-aop-4.3.17.RELEASE/pom.xml               | 176 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-aop-4.3.18.RELEASE/pom.xml               | 175 +++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-aspects-4.3.17.RELEASE/pom.xml           | 146 -----------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-aspects-4.3.18.RELEASE/pom.xml           | 145 +++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-beans-4.3.17.RELEASE/pom.xml             | 141 ----------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-beans-4.3.18.RELEASE/pom.xml             | 140 ++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-context-4.3.17.RELEASE/pom.xml           | 244 -----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-context-4.3.18.RELEASE/pom.xml           | 243 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-context-support-4.3.17.RELEASE/pom.xml   | 204 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-context-support-4.3.18.RELEASE/pom.xml   | 203 +++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-core-4.3.17.RELEASE/pom.xml              | 149 -----------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-core-4.3.18.RELEASE/pom.xml              | 148 +++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-expression-4.3.17.RELEASE/pom.xml        | 123 ---------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-expression-4.3.18.RELEASE/pom.xml        | 122 +++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-instrument-4.3.17.RELEASE/pom.xml        | 116 ---------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-instrument-4.3.18.RELEASE/pom.xml        | 115 ++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-jdbc-4.3.17.RELEASE/pom.xml              | 173 ------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-jdbc-4.3.18.RELEASE/pom.xml              | 172 ++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-jms-4.3.17.RELEASE/pom.xml               | 235 -----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-jms-4.3.18.RELEASE/pom.xml               | 234 +++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-messaging-4.3.17.RELEASE/pom.xml         | 179 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-messaging-4.3.18.RELEASE/pom.xml         | 178 +++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-orm-4.3.17.RELEASE/pom.xml               | 261 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-orm-4.3.18.RELEASE/pom.xml               | 260 ++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-oxm-4.3.17.RELEASE/pom.xml               | 174 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-oxm-4.3.18.RELEASE/pom.xml               | 173 ++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-test-4.3.17.RELEASE/pom.xml              | 226 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-test-4.3.18.RELEASE/pom.xml              | 225 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-tx-4.3.17.RELEASE/pom.xml                | 175 -------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-tx-4.3.18.RELEASE/pom.xml                | 174 +++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-web-4.3.17.RELEASE/pom.xml               | 214 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-web-4.3.18.RELEASE/pom.xml               | 213 +++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-webmvc-4.3.17.RELEASE/pom.xml            | 222 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-webmvc-4.3.18.RELEASE/pom.xml            | 221 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-webmvc-portlet-4.3.17.RELEASE/pom.xml    | 164 ------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-webmvc-portlet-4.3.18.RELEASE/pom.xml    | 163 ++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 spring-websocket-4.3.17.RELEASE/pom.xml         | 223 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 -
 spring-websocket-4.3.18.RELEASE/pom.xml         | 222 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 77 files changed, 3754 insertions(+), 3754 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0d6ed86..b0ffcfe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,6 +45,25 @@
         <module>c3p0-0.9.5.2</module>
         <module>aws-java-sdk-1.11.344</module>
         <module>thymeleaf-3.0.9.RELEASE</module>
+        <module>spring-aop-4.3.18.RELEASE</module>
+        <module>spring-aspects-4.3.18.RELEASE</module>
+        <module>spring-beans-4.3.18.RELEASE</module>
+        <module>spring-context-4.3.18.RELEASE</module>
+        <module>spring-context-support-4.3.18.RELEASE</module>
+        <module>spring-core-4.3.18.RELEASE</module>
+        <module>spring-expression-4.3.18.RELEASE</module>
+        <module>spring-instrument-4.3.18.RELEASE</module>
+        <module>spring-jdbc-4.3.18.RELEASE</module>
+        <module>spring-jms-4.3.18.RELEASE</module>
+        <module>spring-messaging-4.3.18.RELEASE</module>
+        <module>spring-orm-4.3.18.RELEASE</module>
+        <module>spring-oxm-4.3.18.RELEASE</module>
+        <module>spring-test-4.3.18.RELEASE</module>
+        <module>spring-tx-4.3.18.RELEASE</module>
+        <module>spring-web-4.3.18.RELEASE</module>
+        <module>spring-webmvc-4.3.18.RELEASE</module>
+        <module>spring-webmvc-portlet-4.3.18.RELEASE</module>
+        <module>spring-websocket-4.3.18.RELEASE</module>
         <module>aws-java-sdk-1.10.52</module>
     </modules>
 

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-aop-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aop-4.3.17.RELEASE/pom.xml b/spring-aop-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 27e755b..0000000
--- a/spring-aop-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,176 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-aop</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.jamonapi;version="[2.8,3)";resolution:=optional,
-            com.jamonapi.utils;version="[2.8,3)";resolution:=optional,
-            org.aopalliance.aop;version="[1,2)";resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.commons.pool;version="[1.6,2)";resolution:=optional,
-            org.apache.commons.pool.impl;version="[1.6,2)";resolution:=optional,
-            org.apache.commons.pool2;version="[2.4,3)";resolution:=optional, 
-            org.apache.commons.pool2.impl;version="[2.4,3)";resolution:=optional,
-            org.aspectj.bridge;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.util;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.ast;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.internal.tools;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.patterns;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.reflect;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.weaver.tools;version="[1.8.6,2)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cglib.core;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cglib.transform.impl;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert.converter;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.core.task.support;version="[${pkgVersion},4.4)",
-            org.springframework.objenesis;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.comparator;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
-            org.springframework.util.xml;version="[${pkgVersion},4.4)",
-            org.w3c.dom;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>aopalliance</groupId>
-                    <artifactId>aopalliance</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>aopalliance</groupId>
-                    <artifactId>aopalliance</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-aop-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aop-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aop-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 4481170..0000000
--- a/spring-aop-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework AOP 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/24d92f69/spring-aop-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aop-4.3.18.RELEASE/pom.xml b/spring-aop-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..147ea5c
--- /dev/null
+++ b/spring-aop-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,175 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-aop</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-aop</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.jamonapi;version="[2.8,3)";resolution:=optional,
+            com.jamonapi.utils;version="[2.8,3)";resolution:=optional,
+            org.aopalliance.aop;version="[1,2)";resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.commons.pool;version="[1.6,2)";resolution:=optional,
+            org.apache.commons.pool.impl;version="[1.6,2)";resolution:=optional,
+            org.apache.commons.pool2;version="[2.4,3)";resolution:=optional, 
+            org.apache.commons.pool2.impl;version="[2.4,3)";resolution:=optional,
+            org.aspectj.bridge;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.util;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.ast;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.internal.tools;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.patterns;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.reflect;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.weaver.tools;version="[1.8.6,2)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cglib.core;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cglib.transform.impl;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert.converter;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.core.task.support;version="[${pkgVersion},4.4)",
+            org.springframework.objenesis;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.comparator;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
+            org.springframework.util.xml;version="[${pkgVersion},4.4)",
+            org.w3c.dom;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>aopalliance</groupId>
+                    <artifactId>aopalliance</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>aopalliance</groupId>
+                    <artifactId>aopalliance</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-aop-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aop-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aop-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..4481170
--- /dev/null
+++ b/spring-aop-4.3.18.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 AOP 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/24d92f69/spring-aspects-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aspects-4.3.17.RELEASE/pom.xml b/spring-aspects-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index bb8538f..0000000
--- a/spring-aspects-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,146 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-aspects</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-aspects</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.cache.annotation;resolution:=optional,
-            javax.interceptor;resolution:=optional,
-            javax.transaction;version="[1.2,2)";resolution:=optional,
-            org.aspectj.internal.lang.annotation;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
-            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
-            org.springframework.aop.interceptor;version="[${pkgVersion},4.4)",
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.wiring;version="[${pkgVersion},4.4)",
-            org.springframework.cache;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.jcache.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.jcache.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.dao;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.orm.jpa;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.aspectj</groupId>
-                    <artifactId>aspectjweaver</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.aspectj</groupId>
-                    <artifactId>aspectjweaver</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>META-INF/aop.xml</include>
-                                    </includes>
-                                </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/24d92f69/spring-aspects-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aspects-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aspects-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 1e91025..0000000
--- a/spring-aspects-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Aspects 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/24d92f69/spring-aspects-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-aspects-4.3.18.RELEASE/pom.xml b/spring-aspects-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..febdfa6
--- /dev/null
+++ b/spring-aspects-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,145 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-aspects</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-aspects</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.cache.annotation;resolution:=optional,
+            javax.interceptor;resolution:=optional,
+            javax.transaction;version="[1.2,2)";resolution:=optional,
+            org.aspectj.internal.lang.annotation;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.annotation;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.lang.reflect;version="[1.8.6,2)";resolution:=optional,
+            org.aspectj.runtime.internal;version="[1.8.6,2)";resolution:=optional,
+            org.springframework.aop.interceptor;version="[${pkgVersion},4.4)",
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.wiring;version="[${pkgVersion},4.4)",
+            org.springframework.cache;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.jcache.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.jcache.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.dao;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.orm.jpa;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)"
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.aspectj</groupId>
+                    <artifactId>aspectjweaver</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.aspectj</groupId>
+                    <artifactId>aspectjweaver</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>META-INF/aop.xml</include>
+                                    </includes>
+                                </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/24d92f69/spring-aspects-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-aspects-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-aspects-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1e91025
--- /dev/null
+++ b/spring-aspects-4.3.18.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 Aspects 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/24d92f69/spring-beans-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-beans-4.3.17.RELEASE/pom.xml b/spring-beans-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 9e0ad4e..0000000
--- a/spring-beans-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,141 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-beans</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.el;version="[1,3)";resolution:=optional,
-            javax.inject;version="[1,2)";resolution:=optional,
-            javax.xml.parsers;resolution:=optional,
-            groovy.lang;resolution:=optional,
-            groovy.xml;resolution:=optional,
-            org.codehaus.groovy.reflection;resolution:=optional,
-            org.codehaus.groovy.runtime;resolution:=optional,
-            org.codehaus.groovy.runtime.callsite;resolution:=optional,
-            org.codehaus.groovy.runtime.typehandling;resolution:=optional,
-            org.codehaus.groovy.runtime.wrappers;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.springframework.cglib*;version="[${pkgVersion},4.4)",
-            org.springframework.core*;version="[${pkgVersion},4.4)",
-            org.springframework.util*;version="[${pkgVersion},4.4)",
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional,
-            org.yaml.snakeyaml;resolution:=optional,
-            org.yaml.snakeyaml.constructor;resolution:=optional,
-            org.yaml.snakeyaml.error;resolution:=optional,
-            org.yaml.snakeyaml.nodes;resolution:=optional,
-            org.yaml.snakeyaml.parser;resolution:=optional,
-            org.yaml.snakeyaml.reader;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>**/*.dtd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-beans-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-beans-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-beans-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8e776f6..0000000
--- a/spring-beans-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Beans 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/24d92f69/spring-beans-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-beans-4.3.18.RELEASE/pom.xml b/spring-beans-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..8947ad5
--- /dev/null
+++ b/spring-beans-4.3.18.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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-beans</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-beans</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.el;version="[1,3)";resolution:=optional,
+            javax.inject;version="[1,2)";resolution:=optional,
+            javax.xml.parsers;resolution:=optional,
+            groovy.lang;resolution:=optional,
+            groovy.xml;resolution:=optional,
+            org.codehaus.groovy.reflection;resolution:=optional,
+            org.codehaus.groovy.runtime;resolution:=optional,
+            org.codehaus.groovy.runtime.callsite;resolution:=optional,
+            org.codehaus.groovy.runtime.typehandling;resolution:=optional,
+            org.codehaus.groovy.runtime.wrappers;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.springframework.cglib*;version="[${pkgVersion},4.4)",
+            org.springframework.core*;version="[${pkgVersion},4.4)",
+            org.springframework.util*;version="[${pkgVersion},4.4)",
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional,
+            org.yaml.snakeyaml;resolution:=optional,
+            org.yaml.snakeyaml.constructor;resolution:=optional,
+            org.yaml.snakeyaml.error;resolution:=optional,
+            org.yaml.snakeyaml.nodes;resolution:=optional,
+            org.yaml.snakeyaml.parser;resolution:=optional,
+            org.yaml.snakeyaml.reader;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.dtd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-beans-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-beans-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-beans-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..8e776f6
--- /dev/null
+++ b/spring-beans-4.3.18.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 Beans 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/24d92f69/spring-context-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-4.3.17.RELEASE/pom.xml b/spring-context-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 5cb2180..0000000
--- a/spring-context-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,244 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-context</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-context</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            bsh;version="[2,3)";resolution:=optional,
-            com.ibm.websphere.management;resolution:=optional,
-            com.sun.net.httpserver;resolution:=optional,
-            edu.emory.mathcs.backport.java.util.concurrent;version="[3,4)";resolution:=optional,
-            groovy.lang;version="[2.4,3)";resolution:=optional,
-            javax.annotation;resolution:=optional,
-            javax.ejb;resolution:=optional,
-            javax.enterprise.concurrent;resolution:=optional,
-            javax.inject;resolution:=optional,
-            javax.interceptor;resolution:=optional,
-            javax.jms;resolution:=optional,
-            javax.management;resolution:=optional,
-            javax.management.modelmbean;resolution:=optional,
-            javax.management.openmbean;resolution:=optional,
-            javax.management.remote;resolution:=optional,
-            javax.money;resolution:=optional, 
-            javax.money.format;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.persistence;resolution:=optional,
-            javax.persistence.spi;resolution:=optional,
-            javax.rmi;resolution:=optional,
-            javax.script;resolution:=optional,
-            javax.validation;resolution:=optional,
-            javax.validation.bootstrap;resolution:=optional,
-            javax.validation.metadata;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            javax.xml.ws;resolution:=optional,
-            org.aopalliance.aop;version="[1,2)";resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.aspectj.weaver.loadtime;version="[1.8.6,2)";resolution:=optional,
-            org.codehaus.groovy.control;version="[2.4,3)";resolution:=optional,
-            org.codehaus.groovy.control.customizers;version="[2.4,3)";resolution:=optional,
-            org.hibernate.validator;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.messageinterpolation;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.method;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.resourceloading;version="[4,6)";resolution:=optional,
-            org.hibernate.validator.spi.resourceloading;version="[4,6)";resolution:=optional,
-            org.joda.time;version="[2,3)";resolution:=optional,
-            org.joda.time.format;version="[2,3)";resolution:=optional,
-            org.jruby;version="[1.7,2)";resolution:=optional,
-            org.jruby.ast;version="[1.7,2)";resolution:=optional,
-            org.jruby.exceptions;version="[1.7,2)";resolution:=optional,
-            org.jruby.javasupport;version="[1.7,2)";resolution:=optional,
-            org.jruby.runtime;version="[1.7,2)";resolution:=optional,
-            org.jruby.runtime.builtin;version="[1.7,2)";resolution:=optional,
-            org.omg.CORBA;resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework.adapter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.scope;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.target;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.target.dynamic;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.asm;version="[${pkgVersion},4.4)",
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.access;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.groovy;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.propertyeditors;version="[${pkgVersion},4.4)",
-            org.springframework.beans.support;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.core;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.transform;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.reflect;version="[${pkgVersion},4.4)",
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert.converter;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.env;version="[${pkgVersion},4.4)",
-            org.springframework.core.io;version="[${pkgVersion},4.4)",
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.serializer.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.core.task.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.type;version="[${pkgVersion},4.4)",
-            org.springframework.core.type.classreading;version="[${pkgVersion},4.4)",
-            org.springframework.core.type.filter;version="[${pkgVersion},4.4)",
-            org.springframework.expression;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.expression.spel;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.expression.spel.standard;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.expression.spel.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.instrument;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.objenesis;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.orm.jpa.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
-            org.springframework.util.xml;version="[${pkgVersion},4.4)",
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-expression</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>**/*.xml</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-context-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 4c368f9..0000000
--- a/spring-context-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Context module.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[11/17] servicemix-bundles git commit: [SM-3745] Create OSGi bundles for Spring 5.0.7.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-jdbc-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jdbc-5.0.6.RELEASE/pom.xml b/spring-jdbc-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 43234aa..0000000
--- a/spring-jdbc-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,173 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-jdbc</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-jdbc</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.ibm.websphere.rsadapter;resolution:=optional,
-            com.ibm.ws.rsadapter.jdbc;resolution:=optional,
-            com.mchange.v2.c3p0;version="[0.9,2)";resolution:=optional,
-            com.sun.rowset;version="[1.0.1,2)";resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.sql,
-            javax.sql.rowset,
-            javax.transaction;resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.dom;resolution:=optional,
-            oracle.jdbc;resolution:=optional,
-            oracle.sql;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.derby.impl.io;version="[10,11)";resolution:=optional,
-            org.apache.derby.jdbc;version="[10,11)";resolution:=optional,
-            org.h2;version="[1,2)";resolution:=optional,
-            org.hsqldb;version="[2,3)";resolution:=optional,
-            org.jboss.resource.adapter.jdbc;resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
-            org.springframework.context;version="[${pkgVersion},5.1)",
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.io;version="[${pkgVersion},5.1)",
-            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.convert.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.dao;version="[${pkgVersion},5.1)",
-            org.springframework.dao.support;version="[${pkgVersion},5.1)",
-            org.springframework.jndi;version="[${pkgVersion},5.1)",
-            org.springframework.transaction;version="[${pkgVersion},5.1)",
-            org.springframework.transaction.support;version="[${pkgVersion},5.1)",
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.xml;version="[${pkgVersion},5.1)",
-            org.w3c.dom;resolution:=optional,
-            weblogic.jdbc.extensions;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>**/*.xml</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-jdbc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jdbc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jdbc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 90464fc..0000000
--- a/spring-jdbc-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework JDBC 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/899ecb96/spring-jdbc-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jdbc-5.0.7.RELEASE/pom.xml b/spring-jdbc-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..411a70f
--- /dev/null
+++ b/spring-jdbc-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,172 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-jdbc</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-jdbc</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.ibm.websphere.rsadapter;resolution:=optional,
+            com.ibm.ws.rsadapter.jdbc;resolution:=optional,
+            com.mchange.v2.c3p0;version="[0.9,2)";resolution:=optional,
+            com.sun.rowset;version="[1.0.1,2)";resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.sql,
+            javax.sql.rowset,
+            javax.transaction;resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.dom;resolution:=optional,
+            oracle.jdbc;resolution:=optional,
+            oracle.sql;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.derby.impl.io;version="[10,11)";resolution:=optional,
+            org.apache.derby.jdbc;version="[10,11)";resolution:=optional,
+            org.h2;version="[1,2)";resolution:=optional,
+            org.hsqldb;version="[2,3)";resolution:=optional,
+            org.jboss.resource.adapter.jdbc;resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
+            org.springframework.context;version="[${pkgVersion},5.1)",
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.io;version="[${pkgVersion},5.1)",
+            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.convert.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.dao;version="[${pkgVersion},5.1)",
+            org.springframework.dao.support;version="[${pkgVersion},5.1)",
+            org.springframework.jndi;version="[${pkgVersion},5.1)",
+            org.springframework.transaction;version="[${pkgVersion},5.1)",
+            org.springframework.transaction.support;version="[${pkgVersion},5.1)",
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.xml;version="[${pkgVersion},5.1)",
+            org.w3c.dom;resolution:=optional,
+            weblogic.jdbc.extensions;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.xml</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-jdbc-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jdbc-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jdbc-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..90464fc
--- /dev/null
+++ b/spring-jdbc-5.0.7.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 JDBC 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/899ecb96/spring-jms-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jms-5.0.6.RELEASE/pom.xml b/spring-jms-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 24e05bc..0000000
--- a/spring-jms-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,235 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-jms</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-jms</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.databind.type;version="[2,4)";resolution:=optional,
-            io.netty.channel;resolution:=optional,
-            io.netty.channel.nio;resolution:=optional,
-            io.netty.util.concurrent;resolution:=optional,
-            javax.jms,
-            javax.naming;resolution:=optional,
-            javax.resource;resolution:=optional,
-            javax.resource.spi;resolution:=optional,
-            javax.resource.spi.endpoint;resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.stream;resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.codehaus.jackson.map;version="[2,3)";resolution:=optional,
-            org.codehaus.jackson.map.type;version="[2,3)";resolution:=optional,
-            org.codehaus.jackson.type;version="[2,3)";resolution:=optional,
-            org.reactivestreams;resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
-            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.expression;version="[${pkgVersion},5.1)",
-            org.springframework.expression.spel;version="[${pkgVersion},5.1)",
-            org.springframework.expression.spel.standard;version="[${pkgVersion},5.1)",
-            org.springframework.expression.spel.support;version="[${pkgVersion},5.1)",
-            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jca.endpoint;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.oxm;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.remoting;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.remoting.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.backoff;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
-            org.springframework.validation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.validation.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            reactor;resolution:=optional,
-            reactor.bus.spec;resolution:=optional,
-            reactor.core;resolution:=optional,
-            reactor.core.config;resolution:=optional,
-            reactor.core.composable;resolution:=optional,
-            reactor.core.composable.spec;resolution:=optional,
-            reactor.core.configuration;resolution:=optional,
-            reactor.core.spec.support;resolution:=optional,
-            reactor.core.support;resolution:=optional,
-            reactor.fn;resolution:=optional,
-            reactor.fn.tuple;resolution:=optional,
-            reactor.function;resolution:=optional,
-            reactor.io;resolution:=optional,
-            reactor.io.buffer;resolution:=optional,
-            reactor.io.codec;resolution:=optional,
-            reactor.io.encoding;resolution:=optional,
-            reactor.io.net;resolution:=optional,
-            reactor.io.net.config;resolution:=optional,
-            reactor.io.net.impl.netty;resolution:=optional,
-            reactor.io.net.impl.netty.tcp;resolution:=optional,
-            reactor.io.net.tcp;resolution:=optional,
-            reactor.net;resolution:=optional,
-            reactor.net.netty.tcp;resolution:=optional,
-            reactor.net.tcp;resolution:=optional,
-            reactor.net.tcp.spec;resolution:=optional,
-            reactor.tuple;resolution:=optional,
-            reactor.rx;resolution:=optional,
-            reactor.rx.action;resolution:=optional,
-            org.w3c.dom;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-jms-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jms-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jms-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 10652ae..0000000
--- a/spring-jms-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework JMS 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/899ecb96/spring-jms-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jms-5.0.7.RELEASE/pom.xml b/spring-jms-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..46c8832
--- /dev/null
+++ b/spring-jms-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,234 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-jms</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-jms</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.databind.type;version="[2,4)";resolution:=optional,
+            io.netty.channel;resolution:=optional,
+            io.netty.channel.nio;resolution:=optional,
+            io.netty.util.concurrent;resolution:=optional,
+            javax.jms,
+            javax.naming;resolution:=optional,
+            javax.resource;resolution:=optional,
+            javax.resource.spi;resolution:=optional,
+            javax.resource.spi.endpoint;resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.stream;resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.codehaus.jackson.map;version="[2,3)";resolution:=optional,
+            org.codehaus.jackson.map.type;version="[2,3)";resolution:=optional,
+            org.codehaus.jackson.type;version="[2,3)";resolution:=optional,
+            org.reactivestreams;resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
+            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.expression;version="[${pkgVersion},5.1)",
+            org.springframework.expression.spel;version="[${pkgVersion},5.1)",
+            org.springframework.expression.spel.standard;version="[${pkgVersion},5.1)",
+            org.springframework.expression.spel.support;version="[${pkgVersion},5.1)",
+            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jca.endpoint;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.oxm;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.remoting;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.remoting.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.backoff;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
+            org.springframework.validation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.validation.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            reactor;resolution:=optional,
+            reactor.bus.spec;resolution:=optional,
+            reactor.core;resolution:=optional,
+            reactor.core.config;resolution:=optional,
+            reactor.core.composable;resolution:=optional,
+            reactor.core.composable.spec;resolution:=optional,
+            reactor.core.configuration;resolution:=optional,
+            reactor.core.spec.support;resolution:=optional,
+            reactor.core.support;resolution:=optional,
+            reactor.fn;resolution:=optional,
+            reactor.fn.tuple;resolution:=optional,
+            reactor.function;resolution:=optional,
+            reactor.io;resolution:=optional,
+            reactor.io.buffer;resolution:=optional,
+            reactor.io.codec;resolution:=optional,
+            reactor.io.encoding;resolution:=optional,
+            reactor.io.net;resolution:=optional,
+            reactor.io.net.config;resolution:=optional,
+            reactor.io.net.impl.netty;resolution:=optional,
+            reactor.io.net.impl.netty.tcp;resolution:=optional,
+            reactor.io.net.tcp;resolution:=optional,
+            reactor.net;resolution:=optional,
+            reactor.net.netty.tcp;resolution:=optional,
+            reactor.net.tcp;resolution:=optional,
+            reactor.net.tcp.spec;resolution:=optional,
+            reactor.tuple;resolution:=optional,
+            reactor.rx;resolution:=optional,
+            reactor.rx.action;resolution:=optional,
+            org.w3c.dom;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-jms-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jms-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jms-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..10652ae
--- /dev/null
+++ b/spring-jms-5.0.7.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 JMS 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/899ecb96/spring-messaging-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-messaging-5.0.6.RELEASE/pom.xml b/spring-messaging-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index a550dda..0000000
--- a/spring-messaging-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,179 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-messaging</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-messaging</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
-            io.netty.channel;version="[4,5)";resolution:=optional,
-            io.netty.channel.nio;version="[4,5)";resolution:=optional,
-            io.netty.util.concurrent;version="[4,5)";resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.stream;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.reactivestreams;resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
-            org.springframework.expression;version="[${pkgVersion},5.1)",
-            org.springframework.expression.spel;version="[${pkgVersion},5.1)",
-            org.springframework.expression.spel.standard;version="[${pkgVersion},5.1)",
-            org.springframework.expression.spel.support;version="[${pkgVersion},5.1)",
-            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.oxm;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.validation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.validation.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            reactor.core;resolution:=optional,
-            reactor.core.configuration;resolution:=optional,
-            reactor.core.composable;resolution:=optional,
-            reactor.core.composable.spec;resolution:=optional,
-            reactor.core.spec.support;resolution:=optional,
-            reactor.function;resolution:=optional,
-            reactor.function.support;resolution:=optional,
-            reactor.io;resolution:=optional,
-            reactor.tcp;resolution:=optional,
-            reactor.tcp.encoding;resolution:=optional,
-            reactor.tcp.netty;resolution:=optional,
-            reactor.tcp.spec;resolution:=optional,
-            reactor.tuple;resolution:=optional,
-            reactor.*;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/899ecb96/spring-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 61382aa..0000000
--- a/spring-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Messaging 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/899ecb96/spring-messaging-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-messaging-5.0.7.RELEASE/pom.xml b/spring-messaging-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..a85456d
--- /dev/null
+++ b/spring-messaging-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,178 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-messaging</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-messaging</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
+            io.netty.channel;version="[4,5)";resolution:=optional,
+            io.netty.channel.nio;version="[4,5)";resolution:=optional,
+            io.netty.util.concurrent;version="[4,5)";resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.stream;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.reactivestreams;resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
+            org.springframework.expression;version="[${pkgVersion},5.1)",
+            org.springframework.expression.spel;version="[${pkgVersion},5.1)",
+            org.springframework.expression.spel.standard;version="[${pkgVersion},5.1)",
+            org.springframework.expression.spel.support;version="[${pkgVersion},5.1)",
+            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.oxm;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.validation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.validation.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            reactor.core;resolution:=optional,
+            reactor.core.configuration;resolution:=optional,
+            reactor.core.composable;resolution:=optional,
+            reactor.core.composable.spec;resolution:=optional,
+            reactor.core.spec.support;resolution:=optional,
+            reactor.function;resolution:=optional,
+            reactor.function.support;resolution:=optional,
+            reactor.io;resolution:=optional,
+            reactor.tcp;resolution:=optional,
+            reactor.tcp.encoding;resolution:=optional,
+            reactor.tcp.netty;resolution:=optional,
+            reactor.tcp.spec;resolution:=optional,
+            reactor.tuple;resolution:=optional,
+            reactor.*;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/899ecb96/spring-messaging-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-messaging-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-messaging-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..61382aa
--- /dev/null
+++ b/spring-messaging-5.0.7.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 Messaging 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/899ecb96/spring-orm-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-orm-5.0.6.RELEASE/pom.xml b/spring-orm-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 3402372..0000000
--- a/spring-orm-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,261 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-orm</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-orm</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.ibatis.common.xml;resolution:=optional,
-            com.ibatis.sqlmap.client;resolution:=optional,
-            com.ibatis.sqlmap.client.event;resolution:=optional,
-            com.ibatis.sqlmap.engine.builder.xml;resolution:=optional,
-            com.ibatis.sqlmap.engine.impl;resolution:=optional,
-            com.ibatis.sqlmap.engine.transaction;resolution:=optional,
-            com.ibatis.sqlmap.engine.transaction.external;resolution:=optional,
-            com.ibatis.sqlmap.engine.type;resolution:=optional,
-            javax.jdo;resolution:=optional,
-            javax.jdo.datastore;resolution:=optional,
-            javax.persistence;resolution:=optional,
-            javax.persistence.criteria;resolution:=optional,
-            javax.persistence.metamodel;resolution:=optional,
-            javax.persistence.spi;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.sql;resolution:=optional,
-            javax.transaction;resolution:=optional,
-            javax.xml.parsers;resolution:=optional,
-            oracle.toplink.essentials.ejb.cmp3;resolution:=optional,
-            oracle.toplink.essentials.expressions;resolution:=optional,
-            oracle.toplink.essentials.internal.databaseaccess;resolution:=optional,
-            oracle.toplink.essentials.internal.sessions;resolution:=optional,
-            oracle.toplink.essentials.sessions;resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)",
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.openjpa.persistence;version="[2,3)";resolution:=optional,
-            org.apache.openjpa.persistence.jdbc;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.config;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.internal.databaseaccess;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.internal.sessions;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.jpa;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.logging;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.sessions;version="[2,3)";resolution:=optional,
-            org.hibernate;version="[3,6)";resolution:=optional,
-            org.hibernate.annotations;version="[3,6)";resolution:=optional,
-            org.hibernate.boot;version="[3,6)";resolution:=optional,
-            org.hibernate.boot.model.naming;version="[3,6)";resolution:=optional,
-            org.hibernate.boot.registry;version="[3,6)";resolution:=optional,
-            org.hibernate.cache;version="[3,6)";resolution:=optional,
-            org.hibernate.cache.access;version="[3,6)";resolution:=optional,
-            org.hibernate.cache.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.cfg;version="[3,6)";resolution:=optional,
-            org.hibernate.classic;version="[3,6)";resolution:=optional,
-            org.hibernate.connection;version="[3,6)";resolution:=optional,
-            org.hibernate.context;version="[3,6)";resolution:=optional,
-            org.hibernate.context.internal;version="[3,6)";resolution:=optional,
-            org.hibernate.context.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.criterion;version="[3,6)";resolution:=optional,
-            org.hibernate.dialect;version="[3,6)";resolution:=optional,
-            org.hibernate.dialect.lock;version="[3,6)";resolution:=optional,
-            org.hibernate.ejb;version="[3,6)";resolution:=optional,
-            org.hibernate.engine;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.jdbc.connections.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.jdbc.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.transaction.internal.jta;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.transaction.jta.platform.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.transaction.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.event;version="[3,6)";resolution:=optional,
-            org.hibernate.event.def;version="[3,6)";resolution:=optional,
-            org.hibernate.exception;version="[3,6)";resolution:=optional,
-            org.hibernate.impl;version="[3,6)";resolution:=optional,
-            org.hibernate.jdbc;version="[3,6)";resolution:=optional,
-            org.hibernate.jpa;version="[3,6)";resolution:=optional,
-            org.hibernate.jpa.boot.internal;version="[3,6)";resolution:=optional,
-            org.hibernate.jpa.boot.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.persister.entity;version="[3,6)";resolution:=optional,
-            org.hibernate.query;version="[3,6)";resolution:=optional,
-            org.hibernate.resource.transaction.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.resource.jdbc.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.service;version="[3,6)";resolution:=optional,
-            org.hibernate.service.jdbc.connections.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.service.jta.platform.internal;version="[3,6)";resolution:=optional,
-            org.hibernate.service.jta.platform.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.service.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.tool.hbm2ddl;version="[3,6)";resolution:=optional,
-            org.hibernate.transaction;version="[3,6)";resolution:=optional,
-            org.hibernate.transform;version="[3,6)";resolution:=optional,
-            org.hibernate.type;version="[3,6)";resolution:=optional,
-            org.hibernate.usertype;version="[3,6)";resolution:=optional,
-            org.hibernate.util;version="[3,6)";resolution:=optional,
-            org.springframework.aop.scope;version="[${pkgVersion},5.1)",
-            org.springframework.aop.support;version="[${pkgVersion},5.1)",
-            org.springframework.beans;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
-            org.springframework.context;version="[${pkgVersion},5.1)",
-            org.springframework.context.weaving;version="[${pkgVersion},5.1)",
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.io;version="[${pkgVersion},5.1)",
-            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.core.type;version="[${pkgVersion},5.1)",
-            org.springframework.core.type.classreading;version="[${pkgVersion},5.1)",
-            org.springframework.core.type.filter;version="[${pkgVersion},5.1)",
-            org.springframework.dao;version="[${pkgVersion},5.1)",
-            org.springframework.dao.support;version="[${pkgVersion},5.1)",
-            org.springframework.instrument;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.instrument.classloading;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jdbc;version="[${pkgVersion},5.1)",
-            org.springframework.jdbc.datasource;version="[${pkgVersion},5.1)",
-            org.springframework.jdbc.datasource.lookup;version="[${pkgVersion},5.1)",
-            org.springframework.jdbc.support;version="[${pkgVersion},5.1)",
-            org.springframework.jdbc.support.lob;version="[${pkgVersion},5.1)",
-            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},5.1)",
-            org.springframework.transaction.jta;version="[${pkgVersion},5.1)",
-            org.springframework.transaction.support;version="[${pkgVersion},5.1)",
-            org.springframework.ui;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util.xml;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.request;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.request.async;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.filter;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-jdbc</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-jdbc</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/899ecb96/spring-orm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-orm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-orm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index dad88ba..0000000
--- a/spring-orm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework ORM module.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[05/17] servicemix-bundles git commit: [SM-3744] Create OSGi bundles for Spring 4.3.18.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-jdbc-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jdbc-4.3.17.RELEASE/pom.xml b/spring-jdbc-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 1bff33c..0000000
--- a/spring-jdbc-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,173 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-jdbc</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-jdbc</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.ibm.websphere.rsadapter;resolution:=optional,
-            com.ibm.ws.rsadapter.jdbc;resolution:=optional,
-            com.mchange.v2.c3p0;version="[0.9,2)";resolution:=optional,
-            com.sun.rowset;version="[1.0.1,2)";resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.sql,
-            javax.sql.rowset,
-            javax.transaction;resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.dom;resolution:=optional,
-            oracle.jdbc;resolution:=optional,
-            oracle.sql;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.derby.impl.io;version="[10,11)";resolution:=optional,
-            org.apache.derby.jdbc;version="[10,11)";resolution:=optional,
-            org.h2;version="[1,2)";resolution:=optional,
-            org.hsqldb;version="[2,3)";resolution:=optional,
-            org.jboss.resource.adapter.jdbc;resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
-            org.springframework.context;version="[${pkgVersion},4.4)",
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.io;version="[${pkgVersion},4.4)",
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.convert.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.dao;version="[${pkgVersion},4.4)",
-            org.springframework.dao.support;version="[${pkgVersion},4.4)",
-            org.springframework.jndi;version="[${pkgVersion},4.4)",
-            org.springframework.transaction;version="[${pkgVersion},4.4)",
-            org.springframework.transaction.support;version="[${pkgVersion},4.4)",
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.xml;version="[${pkgVersion},4.4)",
-            org.w3c.dom;resolution:=optional,
-            weblogic.jdbc.extensions;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>**/*.xml</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-jdbc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jdbc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jdbc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 90464fc..0000000
--- a/spring-jdbc-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework JDBC 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/24d92f69/spring-jdbc-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jdbc-4.3.18.RELEASE/pom.xml b/spring-jdbc-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..8eda654
--- /dev/null
+++ b/spring-jdbc-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,172 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-jdbc</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-jdbc</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.ibm.websphere.rsadapter;resolution:=optional,
+            com.ibm.ws.rsadapter.jdbc;resolution:=optional,
+            com.mchange.v2.c3p0;version="[0.9,2)";resolution:=optional,
+            com.sun.rowset;version="[1.0.1,2)";resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.sql,
+            javax.sql.rowset,
+            javax.transaction;resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.dom;resolution:=optional,
+            oracle.jdbc;resolution:=optional,
+            oracle.sql;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.derby.impl.io;version="[10,11)";resolution:=optional,
+            org.apache.derby.jdbc;version="[10,11)";resolution:=optional,
+            org.h2;version="[1,2)";resolution:=optional,
+            org.hsqldb;version="[2,3)";resolution:=optional,
+            org.jboss.resource.adapter.jdbc;resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
+            org.springframework.context;version="[${pkgVersion},4.4)",
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.io;version="[${pkgVersion},4.4)",
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.convert.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.dao;version="[${pkgVersion},4.4)",
+            org.springframework.dao.support;version="[${pkgVersion},4.4)",
+            org.springframework.jndi;version="[${pkgVersion},4.4)",
+            org.springframework.transaction;version="[${pkgVersion},4.4)",
+            org.springframework.transaction.support;version="[${pkgVersion},4.4)",
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.xml;version="[${pkgVersion},4.4)",
+            org.w3c.dom;resolution:=optional,
+            weblogic.jdbc.extensions;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.xml</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-jdbc-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jdbc-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jdbc-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..90464fc
--- /dev/null
+++ b/spring-jdbc-4.3.18.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 JDBC 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/24d92f69/spring-jms-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jms-4.3.17.RELEASE/pom.xml b/spring-jms-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 1a43fff..0000000
--- a/spring-jms-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,235 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-jms</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-jms</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.databind.type;version="[2,4)";resolution:=optional,
-            io.netty.channel;resolution:=optional,
-            io.netty.channel.nio;resolution:=optional,
-            io.netty.util.concurrent;resolution:=optional,
-            javax.jms,
-            javax.naming;resolution:=optional,
-            javax.resource;resolution:=optional,
-            javax.resource.spi;resolution:=optional,
-            javax.resource.spi.endpoint;resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.stream;resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.codehaus.jackson.map;version="[2,3)";resolution:=optional,
-            org.codehaus.jackson.map.type;version="[2,3)";resolution:=optional,
-            org.codehaus.jackson.type;version="[2,3)";resolution:=optional,
-            org.reactivestreams;resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.expression;version="[${pkgVersion},4.4)",
-            org.springframework.expression.spel;version="[${pkgVersion},4.4)",
-            org.springframework.expression.spel.standard;version="[${pkgVersion},4.4)",
-            org.springframework.expression.spel.support;version="[${pkgVersion},4.4)",
-            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jca.endpoint;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.oxm;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.remoting;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.remoting.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.backoff;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
-            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.validation.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            reactor;resolution:=optional,
-            reactor.bus.spec;resolution:=optional,
-            reactor.core;resolution:=optional,
-            reactor.core.config;resolution:=optional,
-            reactor.core.composable;resolution:=optional,
-            reactor.core.composable.spec;resolution:=optional,
-            reactor.core.configuration;resolution:=optional,
-            reactor.core.spec.support;resolution:=optional,
-            reactor.core.support;resolution:=optional,
-            reactor.fn;resolution:=optional,
-            reactor.fn.tuple;resolution:=optional,
-            reactor.function;resolution:=optional,
-            reactor.io;resolution:=optional,
-            reactor.io.buffer;resolution:=optional,
-            reactor.io.codec;resolution:=optional,
-            reactor.io.encoding;resolution:=optional,
-            reactor.io.net;resolution:=optional,
-            reactor.io.net.config;resolution:=optional,
-            reactor.io.net.impl.netty;resolution:=optional,
-            reactor.io.net.impl.netty.tcp;resolution:=optional,
-            reactor.io.net.tcp;resolution:=optional,
-            reactor.net;resolution:=optional,
-            reactor.net.netty.tcp;resolution:=optional,
-            reactor.net.tcp;resolution:=optional,
-            reactor.net.tcp.spec;resolution:=optional,
-            reactor.tuple;resolution:=optional,
-            reactor.rx;resolution:=optional,
-            reactor.rx.action;resolution:=optional,
-            org.w3c.dom;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-aop</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-jms-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jms-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jms-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 10652ae..0000000
--- a/spring-jms-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework JMS 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/24d92f69/spring-jms-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-jms-4.3.18.RELEASE/pom.xml b/spring-jms-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..4211f0c
--- /dev/null
+++ b/spring-jms-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,234 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-jms</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-jms</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.databind.type;version="[2,4)";resolution:=optional,
+            io.netty.channel;resolution:=optional,
+            io.netty.channel.nio;resolution:=optional,
+            io.netty.util.concurrent;resolution:=optional,
+            javax.jms,
+            javax.naming;resolution:=optional,
+            javax.resource;resolution:=optional,
+            javax.resource.spi;resolution:=optional,
+            javax.resource.spi.endpoint;resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.stream;resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.codehaus.jackson.map;version="[2,3)";resolution:=optional,
+            org.codehaus.jackson.map.type;version="[2,3)";resolution:=optional,
+            org.codehaus.jackson.type;version="[2,3)";resolution:=optional,
+            org.reactivestreams;resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.expression;version="[${pkgVersion},4.4)",
+            org.springframework.expression.spel;version="[${pkgVersion},4.4)",
+            org.springframework.expression.spel.standard;version="[${pkgVersion},4.4)",
+            org.springframework.expression.spel.support;version="[${pkgVersion},4.4)",
+            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jca.endpoint;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.oxm;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.remoting;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.remoting.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.backoff;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
+            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.validation.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            reactor;resolution:=optional,
+            reactor.bus.spec;resolution:=optional,
+            reactor.core;resolution:=optional,
+            reactor.core.config;resolution:=optional,
+            reactor.core.composable;resolution:=optional,
+            reactor.core.composable.spec;resolution:=optional,
+            reactor.core.configuration;resolution:=optional,
+            reactor.core.spec.support;resolution:=optional,
+            reactor.core.support;resolution:=optional,
+            reactor.fn;resolution:=optional,
+            reactor.fn.tuple;resolution:=optional,
+            reactor.function;resolution:=optional,
+            reactor.io;resolution:=optional,
+            reactor.io.buffer;resolution:=optional,
+            reactor.io.codec;resolution:=optional,
+            reactor.io.encoding;resolution:=optional,
+            reactor.io.net;resolution:=optional,
+            reactor.io.net.config;resolution:=optional,
+            reactor.io.net.impl.netty;resolution:=optional,
+            reactor.io.net.impl.netty.tcp;resolution:=optional,
+            reactor.io.net.tcp;resolution:=optional,
+            reactor.net;resolution:=optional,
+            reactor.net.netty.tcp;resolution:=optional,
+            reactor.net.tcp;resolution:=optional,
+            reactor.net.tcp.spec;resolution:=optional,
+            reactor.tuple;resolution:=optional,
+            reactor.rx;resolution:=optional,
+            reactor.rx.action;resolution:=optional,
+            org.w3c.dom;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-jms-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-jms-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-jms-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..10652ae
--- /dev/null
+++ b/spring-jms-4.3.18.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 JMS 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/24d92f69/spring-messaging-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-messaging-4.3.17.RELEASE/pom.xml b/spring-messaging-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 7505c48..0000000
--- a/spring-messaging-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,179 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-messaging</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-messaging</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
-            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
-            io.netty.channel;version="[4,5)";resolution:=optional,
-            io.netty.channel.nio;version="[4,5)";resolution:=optional,
-            io.netty.util.concurrent;version="[4,5)";resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.stream;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.reactivestreams;resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
-            org.springframework.expression;version="[${pkgVersion},4.4)",
-            org.springframework.expression.spel;version="[${pkgVersion},4.4)",
-            org.springframework.expression.spel.standard;version="[${pkgVersion},4.4)",
-            org.springframework.expression.spel.support;version="[${pkgVersion},4.4)",
-            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.oxm;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.validation.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            reactor.core;resolution:=optional,
-            reactor.core.configuration;resolution:=optional,
-            reactor.core.composable;resolution:=optional,
-            reactor.core.composable.spec;resolution:=optional,
-            reactor.core.spec.support;resolution:=optional,
-            reactor.function;resolution:=optional,
-            reactor.function.support;resolution:=optional,
-            reactor.io;resolution:=optional,
-            reactor.tcp;resolution:=optional,
-            reactor.tcp.encoding;resolution:=optional,
-            reactor.tcp.netty;resolution:=optional,
-            reactor.tcp.spec;resolution:=optional,
-            reactor.tuple;resolution:=optional,
-            reactor.*;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/24d92f69/spring-messaging-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-messaging-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-messaging-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 61382aa..0000000
--- a/spring-messaging-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Messaging 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/24d92f69/spring-messaging-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-messaging-4.3.18.RELEASE/pom.xml b/spring-messaging-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..670d407
--- /dev/null
+++ b/spring-messaging-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,178 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-messaging</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-messaging</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson.annotation;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.core;version="[2,4)";resolution:=optional,
+            com.fasterxml.jackson.databind;version="[2,4)";resolution:=optional,
+            io.netty.channel;version="[4,5)";resolution:=optional,
+            io.netty.channel.nio;version="[4,5)";resolution:=optional,
+            io.netty.util.concurrent;version="[4,5)";resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.stream;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.reactivestreams;resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
+            org.springframework.expression;version="[${pkgVersion},4.4)",
+            org.springframework.expression.spel;version="[${pkgVersion},4.4)",
+            org.springframework.expression.spel.standard;version="[${pkgVersion},4.4)",
+            org.springframework.expression.spel.support;version="[${pkgVersion},4.4)",
+            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.oxm;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.validation.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            reactor.core;resolution:=optional,
+            reactor.core.configuration;resolution:=optional,
+            reactor.core.composable;resolution:=optional,
+            reactor.core.composable.spec;resolution:=optional,
+            reactor.core.spec.support;resolution:=optional,
+            reactor.function;resolution:=optional,
+            reactor.function.support;resolution:=optional,
+            reactor.io;resolution:=optional,
+            reactor.tcp;resolution:=optional,
+            reactor.tcp.encoding;resolution:=optional,
+            reactor.tcp.netty;resolution:=optional,
+            reactor.tcp.spec;resolution:=optional,
+            reactor.tuple;resolution:=optional,
+            reactor.*;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/24d92f69/spring-messaging-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-messaging-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-messaging-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..61382aa
--- /dev/null
+++ b/spring-messaging-4.3.18.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 Messaging 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/24d92f69/spring-orm-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-orm-4.3.17.RELEASE/pom.xml b/spring-orm-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 5dc9353..0000000
--- a/spring-orm-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,261 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-orm</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-orm</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.ibatis.common.xml;resolution:=optional,
-            com.ibatis.sqlmap.client;resolution:=optional,
-            com.ibatis.sqlmap.client.event;resolution:=optional,
-            com.ibatis.sqlmap.engine.builder.xml;resolution:=optional,
-            com.ibatis.sqlmap.engine.impl;resolution:=optional,
-            com.ibatis.sqlmap.engine.transaction;resolution:=optional,
-            com.ibatis.sqlmap.engine.transaction.external;resolution:=optional,
-            com.ibatis.sqlmap.engine.type;resolution:=optional,
-            javax.jdo;resolution:=optional,
-            javax.jdo.datastore;resolution:=optional,
-            javax.persistence;resolution:=optional,
-            javax.persistence.criteria;resolution:=optional,
-            javax.persistence.metamodel;resolution:=optional,
-            javax.persistence.spi;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.sql;resolution:=optional,
-            javax.transaction;resolution:=optional,
-            javax.xml.parsers;resolution:=optional,
-            oracle.toplink.essentials.ejb.cmp3;resolution:=optional,
-            oracle.toplink.essentials.expressions;resolution:=optional,
-            oracle.toplink.essentials.internal.databaseaccess;resolution:=optional,
-            oracle.toplink.essentials.internal.sessions;resolution:=optional,
-            oracle.toplink.essentials.sessions;resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)",
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.openjpa.persistence;version="[2,3)";resolution:=optional,
-            org.apache.openjpa.persistence.jdbc;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.config;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.internal.databaseaccess;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.internal.sessions;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.jpa;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.logging;version="[2,3)";resolution:=optional,
-            org.eclipse.persistence.sessions;version="[2,3)";resolution:=optional,
-            org.hibernate;version="[3,6)";resolution:=optional,
-            org.hibernate.annotations;version="[3,6)";resolution:=optional,
-            org.hibernate.boot;version="[3,6)";resolution:=optional,
-            org.hibernate.boot.model.naming;version="[3,6)";resolution:=optional,
-            org.hibernate.boot.registry;version="[3,6)";resolution:=optional,
-            org.hibernate.cache;version="[3,6)";resolution:=optional,
-            org.hibernate.cache.access;version="[3,6)";resolution:=optional,
-            org.hibernate.cache.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.cfg;version="[3,6)";resolution:=optional,
-            org.hibernate.classic;version="[3,6)";resolution:=optional,
-            org.hibernate.connection;version="[3,6)";resolution:=optional,
-            org.hibernate.context;version="[3,6)";resolution:=optional,
-            org.hibernate.context.internal;version="[3,6)";resolution:=optional,
-            org.hibernate.context.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.criterion;version="[3,6)";resolution:=optional,
-            org.hibernate.dialect;version="[3,6)";resolution:=optional,
-            org.hibernate.dialect.lock;version="[3,6)";resolution:=optional,
-            org.hibernate.ejb;version="[3,6)";resolution:=optional,
-            org.hibernate.engine;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.jdbc.connections.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.jdbc.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.transaction.internal.jta;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.transaction.jta.platform.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.engine.transaction.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.event;version="[3,6)";resolution:=optional,
-            org.hibernate.event.def;version="[3,6)";resolution:=optional,
-            org.hibernate.exception;version="[3,6)";resolution:=optional,
-            org.hibernate.impl;version="[3,6)";resolution:=optional,
-            org.hibernate.jdbc;version="[3,6)";resolution:=optional,
-            org.hibernate.jpa;version="[3,6)";resolution:=optional,
-            org.hibernate.jpa.boot.internal;version="[3,6)";resolution:=optional,
-            org.hibernate.jpa.boot.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.persister.entity;version="[3,6)";resolution:=optional,
-            org.hibernate.query;version="[3,6)";resolution:=optional,
-            org.hibernate.resource.transaction.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.resource.jdbc.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.service;version="[3,6)";resolution:=optional,
-            org.hibernate.service.jdbc.connections.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.service.jta.platform.internal;version="[3,6)";resolution:=optional,
-            org.hibernate.service.jta.platform.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.service.spi;version="[3,6)";resolution:=optional,
-            org.hibernate.tool.hbm2ddl;version="[3,6)";resolution:=optional,
-            org.hibernate.transaction;version="[3,6)";resolution:=optional,
-            org.hibernate.transform;version="[3,6)";resolution:=optional,
-            org.hibernate.type;version="[3,6)";resolution:=optional,
-            org.hibernate.usertype;version="[3,6)";resolution:=optional,
-            org.hibernate.util;version="[3,6)";resolution:=optional,
-            org.springframework.aop.scope;version="[${pkgVersion},4.4)",
-            org.springframework.aop.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.context;version="[${pkgVersion},4.4)",
-            org.springframework.context.weaving;version="[${pkgVersion},4.4)",
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.io;version="[${pkgVersion},4.4)",
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.core.type;version="[${pkgVersion},4.4)",
-            org.springframework.core.type.classreading;version="[${pkgVersion},4.4)",
-            org.springframework.core.type.filter;version="[${pkgVersion},4.4)",
-            org.springframework.dao;version="[${pkgVersion},4.4)",
-            org.springframework.dao.support;version="[${pkgVersion},4.4)",
-            org.springframework.instrument;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.instrument.classloading;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jdbc;version="[${pkgVersion},4.4)",
-            org.springframework.jdbc.datasource;version="[${pkgVersion},4.4)",
-            org.springframework.jdbc.datasource.lookup;version="[${pkgVersion},4.4)",
-            org.springframework.jdbc.support;version="[${pkgVersion},4.4)",
-            org.springframework.jdbc.support.lob;version="[${pkgVersion},4.4)",
-            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},4.4)",
-            org.springframework.transaction.jta;version="[${pkgVersion},4.4)",
-            org.springframework.transaction.support;version="[${pkgVersion},4.4)",
-            org.springframework.ui;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util.xml;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.request;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.request.async;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.filter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-jdbc</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-jdbc</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-tx</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/24d92f69/spring-orm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-orm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-orm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index dad88ba..0000000
--- a/spring-orm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework ORM module.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[16/17] servicemix-bundles git commit: [SM-3746] Create OSGi bundles for Spring Security 5.0.6.RELEASE

Posted by ac...@apache.org.
[SM-3746] Create OSGi bundles for Spring Security 5.0.6.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/d8e30656
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/d8e30656
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/d8e30656

Branch: refs/heads/master
Commit: d8e306562a6c9cef311bbf05f5215fc5cbf5870d
Parents: 899ecb9
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Thu Jun 21 16:49:56 2018 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 28 14:14:03 2018 +0200

----------------------------------------------------------------------
 pom.xml                                         |  16 +++
 spring-security-acl-5.0.5.RELEASE/pom.xml       | 120 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-acl-5.0.6.RELEASE/pom.xml       | 119 ++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-aspects-5.0.5.RELEASE/pom.xml   | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-aspects-5.0.6.RELEASE/pom.xml   | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-cas-5.0.5.RELEASE/pom.xml       | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-cas-5.0.6.RELEASE/pom.xml       | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-config-5.0.5.RELEASE/pom.xml    | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-config-5.0.6.RELEASE/pom.xml    | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-core-5.0.5.RELEASE/pom.xml      | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-core-5.0.6.RELEASE/pom.xml      | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-crypto-5.0.5.RELEASE/pom.xml    | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-crypto-5.0.6.RELEASE/pom.xml    | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-data-5.0.5.RELEASE/pom.xml      | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-data-5.0.6.RELEASE/pom.xml      | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-ldap-5.0.5.RELEASE/pom.xml      | 107 -----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-ldap-5.0.6.RELEASE/pom.xml      | 106 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-messaging-5.0.5.RELEASE/pom.xml | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-messaging-5.0.6.RELEASE/pom.xml | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 .../pom.xml                                     | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 .../pom.xml                                     | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 .../pom.xml                                     | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 .../pom.xml                                     | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 .../pom.xml                                     | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 .../pom.xml                                     | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-remoting-5.0.5.RELEASE/pom.xml  | 105 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-remoting-5.0.6.RELEASE/pom.xml  | 104 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-taglibs-5.0.5.RELEASE/pom.xml   | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-taglibs-5.0.6.RELEASE/pom.xml   | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-test-5.0.5.RELEASE/pom.xml      | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-test-5.0.6.RELEASE/pom.xml      | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 spring-security-web-5.0.5.RELEASE/pom.xml       | 106 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  11 --
 spring-security-web-5.0.6.RELEASE/pom.xml       | 105 ++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 65 files changed, 1880 insertions(+), 1880 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/d8e30656/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0e72a25..d69fc24 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,6 +83,22 @@
         <module>spring-web-5.0.7.RELEASE</module>
         <module>spring-webmvc-5.0.7.RELEASE</module>
         <module>spring-websocket-5.0.7.RELEASE</module>
+        <module>spring-security-acl-5.0.6.RELEASE</module>
+        <module>spring-security-aspects-5.0.6.RELEASE</module>
+        <module>spring-security-cas-5.0.6.RELEASE</module>
+        <module>spring-security-config-5.0.6.RELEASE</module>
+        <module>spring-security-core-5.0.6.RELEASE</module>
+        <module>spring-security-crypto-5.0.6.RELEASE</module>
+        <module>spring-security-data-5.0.6.RELEASE</module>
+        <module>spring-security-ldap-5.0.6.RELEASE</module>
+        <module>spring-security-messaging-5.0.6.RELEASE</module>
+        <module>spring-security-oauth2-client-5.0.6.RELEASE</module>
+        <module>spring-security-oauth2-core-5.0.6.RELEASE</module>
+        <module>spring-security-oauth2-jose-5.0.6.RELEASE</module>
+        <module>spring-security-remoting-5.0.6.RELEASE</module>
+        <module>spring-security-taglibs-5.0.6.RELEASE</module>
+        <module>spring-security-test-5.0.6.RELEASE</module>
+        <module>spring-security-web-5.0.6.RELEASE</module>
         <module>aws-java-sdk-1.10.52</module>
     </modules>
 

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/d8e30656/spring-security-acl-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-acl-5.0.5.RELEASE/pom.xml b/spring-security-acl-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index a5091c4..0000000
--- a/spring-security-acl-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-acl</artifactId>
-    <version>5.0.5.RELEASE_2-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>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.acl
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.sql,
-            net.sf.ehcache;resolution:=optional,
-            org.aopalliance.intercept;resolution:=optional,
-            org.apache.commons.logging;resolution:=optional,
-            org.springframework.cache;version="[5,6)",
-            org.springframework.context;version="[5,6)",
-            org.springframework.context.support;version="[5,6)",
-            org.springframework.core.convert;version="[5,6)",
-            org.springframework.dao;version="[5,6)",
-            org.springframework.jdbc.core;version="[5,6)",
-            org.springframework.security.access*;version="[${pkgVersion},6)",
-            org.springframework.security.acls*;version="[${pkgVersion},6)",
-            org.springframework.security.core*;version="[${pkgVersion},6)",
-            org.springframework.security.util;version="[${pkgVersion},6)",
-            org.springframework.transaction.support;version="[5,6)",
-            org.springframework.util;version="[5,6)"
-        </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/d8e30656/spring-security-acl-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-acl-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-acl-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-acl-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-acl-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-acl-5.0.6.RELEASE/pom.xml b/spring-security-acl-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..feb65f5
--- /dev/null
+++ b/spring-security-acl-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,119 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-acl</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-acl</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.acl
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.sql,
+            net.sf.ehcache;resolution:=optional,
+            org.aopalliance.intercept;resolution:=optional,
+            org.apache.commons.logging;resolution:=optional,
+            org.springframework.cache;version="[5,6)",
+            org.springframework.context;version="[5,6)",
+            org.springframework.context.support;version="[5,6)",
+            org.springframework.core.convert;version="[5,6)",
+            org.springframework.dao;version="[5,6)",
+            org.springframework.jdbc.core;version="[5,6)",
+            org.springframework.security.access*;version="[${pkgVersion},6)",
+            org.springframework.security.acls*;version="[${pkgVersion},6)",
+            org.springframework.security.core*;version="[${pkgVersion},6)",
+            org.springframework.security.util;version="[${pkgVersion},6)",
+            org.springframework.transaction.support;version="[5,6)",
+            org.springframework.util;version="[5,6)"
+        </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/d8e30656/spring-security-acl-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-acl-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-acl-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-acl-5.0.6.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/d8e30656/spring-security-aspects-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-aspects-5.0.5.RELEASE/pom.xml b/spring-security-aspects-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 31c2fa9..0000000
--- a/spring-security-aspects-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-aspects</artifactId>
-    <version>5.0.5.RELEASE_2-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-aspects</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.access.intercept.aspectj
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            org.aspectj*,
-            org.springframework.beans.factory;version="[5,6)"
-        </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>
-                                    <includes>
-                                        <include>META-INF/aop.xml</include>
-                                    </includes>
-                                </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/d8e30656/spring-security-aspects-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-aspects-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-aspects-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-aspects-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-aspects-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-aspects-5.0.6.RELEASE/pom.xml b/spring-security-aspects-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..3b6ca71
--- /dev/null
+++ b/spring-security-aspects-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-aspects</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-aspects</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.access.intercept.aspectj
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.aspectj*,
+            org.springframework.beans.factory;version="[5,6)"
+        </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>
+                                    <includes>
+                                        <include>META-INF/aop.xml</include>
+                                    </includes>
+                                </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/d8e30656/spring-security-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-aspects-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-aspects-5.0.6.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/d8e30656/spring-security-cas-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-cas-5.0.5.RELEASE/pom.xml b/spring-security-cas-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 2bccbef..0000000
--- a/spring-security-cas-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-cas</artifactId>
-    <version>5.0.5.RELEASE_2-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-cas</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.cas
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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/d8e30656/spring-security-cas-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-cas-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-cas-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-cas-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-cas-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-cas-5.0.6.RELEASE/pom.xml b/spring-security-cas-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..faf00e1
--- /dev/null
+++ b/spring-security-cas-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-cas</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-cas</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.cas
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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/d8e30656/spring-security-cas-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-cas-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-cas-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-cas-5.0.6.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/d8e30656/spring-security-config-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-config-5.0.5.RELEASE/pom.xml b/spring-security-config-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 2a5a21c..0000000
--- a/spring-security-config-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-config</artifactId>
-    <version>5.0.5.RELEASE_2-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>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.config
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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>
-                                    <includes>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/d8e30656/spring-security-config-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-config-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-config-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index c22e28e..0000000
--- a/spring-security-config-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-config-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-config-5.0.6.RELEASE/pom.xml b/spring-security-config-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..cf13d81
--- /dev/null
+++ b/spring-security-config-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-config</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-config</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.config
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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>
+                                    <includes>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/d8e30656/spring-security-config-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-config-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-config-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..c22e28e
--- /dev/null
+++ b/spring-security-config-5.0.6.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/d8e30656/spring-security-core-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-core-5.0.5.RELEASE/pom.xml b/spring-security-core-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 9bd517e..0000000
--- a/spring-security-core-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-core</artifactId>
-    <version>5.0.5.RELEASE_2-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>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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/d8e30656/spring-security-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 399933a..0000000
--- a/spring-security-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-core-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-core-5.0.6.RELEASE/pom.xml b/spring-security-core-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..8bf9c98
--- /dev/null
+++ b/spring-security-core-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-core</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-core</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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/d8e30656/spring-security-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..399933a
--- /dev/null
+++ b/spring-security-core-5.0.6.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/d8e30656/spring-security-crypto-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-crypto-5.0.5.RELEASE/pom.xml b/spring-security-crypto-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index e99505c..0000000
--- a/spring-security-crypto-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-crypto</artifactId>
-    <version>5.0.5.RELEASE_2-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-crypto</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.crypto
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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/d8e30656/spring-security-crypto-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-crypto-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-crypto-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-crypto-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-crypto-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-crypto-5.0.6.RELEASE/pom.xml b/spring-security-crypto-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..3b44c94
--- /dev/null
+++ b/spring-security-crypto-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-crypto</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-crypto</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.crypto
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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/d8e30656/spring-security-crypto-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-crypto-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-crypto-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-crypto-5.0.6.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/d8e30656/spring-security-data-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-data-5.0.5.RELEASE/pom.xml b/spring-security-data-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index a03378e..0000000
--- a/spring-security-data-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-data</artifactId>
-    <version>5.0.5.RELEASE_2-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-data</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.data
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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/d8e30656/spring-security-data-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-data-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-data-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-data-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-data-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-data-5.0.6.RELEASE/pom.xml b/spring-security-data-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..20db737
--- /dev/null
+++ b/spring-security-data-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-data</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-data</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.data
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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/d8e30656/spring-security-data-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-data-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-data-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-data-5.0.6.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


[04/17] servicemix-bundles git commit: [SM-3744] Create OSGi bundles for Spring 4.3.18.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-orm-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-orm-4.3.18.RELEASE/pom.xml b/spring-orm-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..7a985ab
--- /dev/null
+++ b/spring-orm-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,260 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-orm</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-orm</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.ibatis.common.xml;resolution:=optional,
+            com.ibatis.sqlmap.client;resolution:=optional,
+            com.ibatis.sqlmap.client.event;resolution:=optional,
+            com.ibatis.sqlmap.engine.builder.xml;resolution:=optional,
+            com.ibatis.sqlmap.engine.impl;resolution:=optional,
+            com.ibatis.sqlmap.engine.transaction;resolution:=optional,
+            com.ibatis.sqlmap.engine.transaction.external;resolution:=optional,
+            com.ibatis.sqlmap.engine.type;resolution:=optional,
+            javax.jdo;resolution:=optional,
+            javax.jdo.datastore;resolution:=optional,
+            javax.persistence;resolution:=optional,
+            javax.persistence.criteria;resolution:=optional,
+            javax.persistence.metamodel;resolution:=optional,
+            javax.persistence.spi;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.sql;resolution:=optional,
+            javax.transaction;resolution:=optional,
+            javax.xml.parsers;resolution:=optional,
+            oracle.toplink.essentials.ejb.cmp3;resolution:=optional,
+            oracle.toplink.essentials.expressions;resolution:=optional,
+            oracle.toplink.essentials.internal.databaseaccess;resolution:=optional,
+            oracle.toplink.essentials.internal.sessions;resolution:=optional,
+            oracle.toplink.essentials.sessions;resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)",
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.openjpa.persistence;version="[2,3)";resolution:=optional,
+            org.apache.openjpa.persistence.jdbc;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.config;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.internal.databaseaccess;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.internal.sessions;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.jpa;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.logging;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.sessions;version="[2,3)";resolution:=optional,
+            org.hibernate;version="[3,6)";resolution:=optional,
+            org.hibernate.annotations;version="[3,6)";resolution:=optional,
+            org.hibernate.boot;version="[3,6)";resolution:=optional,
+            org.hibernate.boot.model.naming;version="[3,6)";resolution:=optional,
+            org.hibernate.boot.registry;version="[3,6)";resolution:=optional,
+            org.hibernate.cache;version="[3,6)";resolution:=optional,
+            org.hibernate.cache.access;version="[3,6)";resolution:=optional,
+            org.hibernate.cache.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.cfg;version="[3,6)";resolution:=optional,
+            org.hibernate.classic;version="[3,6)";resolution:=optional,
+            org.hibernate.connection;version="[3,6)";resolution:=optional,
+            org.hibernate.context;version="[3,6)";resolution:=optional,
+            org.hibernate.context.internal;version="[3,6)";resolution:=optional,
+            org.hibernate.context.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.criterion;version="[3,6)";resolution:=optional,
+            org.hibernate.dialect;version="[3,6)";resolution:=optional,
+            org.hibernate.dialect.lock;version="[3,6)";resolution:=optional,
+            org.hibernate.ejb;version="[3,6)";resolution:=optional,
+            org.hibernate.engine;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.jdbc.connections.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.jdbc.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.transaction.internal.jta;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.transaction.jta.platform.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.transaction.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.event;version="[3,6)";resolution:=optional,
+            org.hibernate.event.def;version="[3,6)";resolution:=optional,
+            org.hibernate.exception;version="[3,6)";resolution:=optional,
+            org.hibernate.impl;version="[3,6)";resolution:=optional,
+            org.hibernate.jdbc;version="[3,6)";resolution:=optional,
+            org.hibernate.jpa;version="[3,6)";resolution:=optional,
+            org.hibernate.jpa.boot.internal;version="[3,6)";resolution:=optional,
+            org.hibernate.jpa.boot.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.persister.entity;version="[3,6)";resolution:=optional,
+            org.hibernate.query;version="[3,6)";resolution:=optional,
+            org.hibernate.resource.transaction.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.resource.jdbc.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.service;version="[3,6)";resolution:=optional,
+            org.hibernate.service.jdbc.connections.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.service.jta.platform.internal;version="[3,6)";resolution:=optional,
+            org.hibernate.service.jta.platform.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.service.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.tool.hbm2ddl;version="[3,6)";resolution:=optional,
+            org.hibernate.transaction;version="[3,6)";resolution:=optional,
+            org.hibernate.transform;version="[3,6)";resolution:=optional,
+            org.hibernate.type;version="[3,6)";resolution:=optional,
+            org.hibernate.usertype;version="[3,6)";resolution:=optional,
+            org.hibernate.util;version="[3,6)";resolution:=optional,
+            org.springframework.aop.scope;version="[${pkgVersion},4.4)",
+            org.springframework.aop.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.context;version="[${pkgVersion},4.4)",
+            org.springframework.context.weaving;version="[${pkgVersion},4.4)",
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.io;version="[${pkgVersion},4.4)",
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.core.type;version="[${pkgVersion},4.4)",
+            org.springframework.core.type.classreading;version="[${pkgVersion},4.4)",
+            org.springframework.core.type.filter;version="[${pkgVersion},4.4)",
+            org.springframework.dao;version="[${pkgVersion},4.4)",
+            org.springframework.dao.support;version="[${pkgVersion},4.4)",
+            org.springframework.instrument;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.instrument.classloading;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jdbc;version="[${pkgVersion},4.4)",
+            org.springframework.jdbc.datasource;version="[${pkgVersion},4.4)",
+            org.springframework.jdbc.datasource.lookup;version="[${pkgVersion},4.4)",
+            org.springframework.jdbc.support;version="[${pkgVersion},4.4)",
+            org.springframework.jdbc.support.lob;version="[${pkgVersion},4.4)",
+            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},4.4)",
+            org.springframework.transaction.jta;version="[${pkgVersion},4.4)",
+            org.springframework.transaction.support;version="[${pkgVersion},4.4)",
+            org.springframework.ui;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util.xml;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.request;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.request.async;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.filter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-jdbc</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-jdbc</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/24d92f69/spring-orm-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-orm-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-orm-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..dad88ba
--- /dev/null
+++ b/spring-orm-4.3.18.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 ORM 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/24d92f69/spring-oxm-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-oxm-4.3.17.RELEASE/pom.xml b/spring-oxm-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 1d7b05e..0000000
--- a/spring-oxm-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,174 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-oxm</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-oxm</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.thoughtworks.xstream;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.converters;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.converters.reflection;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.core;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.core.util;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.io;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.io.naming;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.io.xml;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.mapper;version="[1.4,2)";resolution:=optional,
-            javax.activation;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.bind;resolution:=optional,
-            javax.xml.bind.annotation;resolution:=optional,
-            javax.xml.bind.annotation.adapters;resolution:=optional,
-            javax.xml.bind.attachment;resolution:=optional,
-            javax.xml.datatype,
-            javax.xml.namespace,
-            javax.xml.parsers,
-            javax.xml.stream,
-            javax.xml.transform,
-            javax.xml.transform.dom,
-            javax.xml.transform.sax,
-            javax.xml.transform.stream,
-            javax.xml.validation,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.xmlbeans;version="[2.6,3)";resolution:=optional,
-            org.exolab.castor.mapping;version="[1.3,2)";resolution:=optional,
-            org.exolab.castor.xml;version="[1.3,2)";resolution:=optional,
-            org.exolab.castor.util;version="[1.3,2)";resolution:=optional,
-            org.jibx.runtime;version="[1.2,2)";resolution:=optional,
-            org.jibx.runtime.impl;version="[1.2,2)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.io;version="[${pkgVersion},4.4)",
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.type;version="[${pkgVersion},4.4)",
-            org.springframework.core.type.classreading;version="[${pkgVersion},4.4)",
-            org.springframework.core.type.filter;version="[${pkgVersion},4.4)",
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.xml;version="[${pkgVersion},4.4)",
-            org.w3c.dom,
-            org.w3c.dom.ls,
-            org.xml.sax,
-            org.xml.sax.ext,
-            org.xml.sax.helpers
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-oxm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-oxm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-oxm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9e728ad..0000000
--- a/spring-oxm-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework OXM 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/24d92f69/spring-oxm-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-oxm-4.3.18.RELEASE/pom.xml b/spring-oxm-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..0c6251d
--- /dev/null
+++ b/spring-oxm-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,173 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-oxm</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-oxm</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.thoughtworks.xstream;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.converters;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.converters.reflection;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.core;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.core.util;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.io;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.io.naming;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.io.xml;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.mapper;version="[1.4,2)";resolution:=optional,
+            javax.activation;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.bind;resolution:=optional,
+            javax.xml.bind.annotation;resolution:=optional,
+            javax.xml.bind.annotation.adapters;resolution:=optional,
+            javax.xml.bind.attachment;resolution:=optional,
+            javax.xml.datatype,
+            javax.xml.namespace,
+            javax.xml.parsers,
+            javax.xml.stream,
+            javax.xml.transform,
+            javax.xml.transform.dom,
+            javax.xml.transform.sax,
+            javax.xml.transform.stream,
+            javax.xml.validation,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.xmlbeans;version="[2.6,3)";resolution:=optional,
+            org.exolab.castor.mapping;version="[1.3,2)";resolution:=optional,
+            org.exolab.castor.xml;version="[1.3,2)";resolution:=optional,
+            org.exolab.castor.util;version="[1.3,2)";resolution:=optional,
+            org.jibx.runtime;version="[1.2,2)";resolution:=optional,
+            org.jibx.runtime.impl;version="[1.2,2)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.io;version="[${pkgVersion},4.4)",
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.type;version="[${pkgVersion},4.4)",
+            org.springframework.core.type.classreading;version="[${pkgVersion},4.4)",
+            org.springframework.core.type.filter;version="[${pkgVersion},4.4)",
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.xml;version="[${pkgVersion},4.4)",
+            org.w3c.dom,
+            org.w3c.dom.ls,
+            org.xml.sax,
+            org.xml.sax.ext,
+            org.xml.sax.helpers
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-oxm-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-oxm-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-oxm-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9e728ad
--- /dev/null
+++ b/spring-oxm-4.3.18.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 OXM 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/24d92f69/spring-test-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-test-4.3.17.RELEASE/pom.xml b/spring-test-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index a4804c8..0000000
--- a/spring-test-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-test</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-test</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.jayway.jsonpath;version="[1,3)";resolution:=optional,
-            com.gargoylesoftware.htmlunit;resolution:=optional,
-            com.gargoylesoftware.htmlunit.util;resolution:=optional,
-            javax.activation;resolution:=optional,
-            javax.el;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.naming.spi;resolution:=optional,
-            javax.persistence;resolution:=optional,
-            javax.portlet;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.descriptor;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.servlet.jsp;resolution:=optional,
-            javax.servlet.jsp.el;resolution:=optional,
-            javax.servlet.jsp.tagext;resolution:=optional,
-            javax.sql;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            javax.xml.parsers;resolution:=optional,
-            javax.xml.transform,
-            javax.xml.transform.dom,
-            javax.xml.xpath;resolution:=optional,
-            javax.websocket;resolution:=optional, 
-            javax.websocket.server;resolution:=optional, 
-            junit.framework;version="[4,5)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.http.cookie;resolution:=optional,
-            org.apache.http.impl.cookie;resolution:=optional,
-            org.apache.taglibs.standard.lang.support;version="[1.2,2)";resolution:=optional,
-            org.aspectj.weaver.loadtime;version="[1.8,2)";resolution:=optional,
-            org.custommonkey.xmlunit;version="[1.5,2)";resolution:=optional,
-            org.hamcrest;version="[1,2)";resolution:=optional,
-            org.hamcrest.core;version="[1,2)";resolution:=optional,
-            org.junit;version="[4,5)";resolution:=optional,
-            org.junit.internal;version="[4,5)";resolution:=optional,
-            org.junit.internal.runners.model;version="[4,5)";resolution:=optional,
-            org.junit.internal.runners.statements;version="[4,5)";resolution:=optional,
-            org.junit.rules;version="[4,5)";resolution:=optional,
-            org.junit.runner;version="[4,5)";resolution:=optional,
-            org.junit.runner.notification;version="[4,5)";resolution:=optional,
-            org.junit.runners;version="[4,5)";resolution:=optional,
-            org.junit.runners.model;version="[4,5)";resolution:=optional,
-            org.openqa.selenium;version="[2,4)";resolution:=optional,
-            org.openqa.selenium.htmlunit;version="[2,4)";resolution:=optional,
-            org.skyscreamer.jsonassert;resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.groovy;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.env;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.io;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core.style;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.dao;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.client;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.http.converter;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.instrument.classloading;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jdbc.core;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jdbc.core.simple;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jdbc.datasource.init;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.orm.jpa;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.orm.jpa.persistenceunit;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.ui;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util.xml;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.accept;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.bind.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.client;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.client.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.request;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.request.async;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.method;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.method.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.multipart;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.portlet.multipart;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.config.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.handler;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.i18n;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.mvc.method.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.theme;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.servlet.view;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.web.util;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.testng;resolution:=optional,
-            org.testng.annotations;resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>META-INF/spring.*</include>
-                                    </includes>
-                                </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/24d92f69/spring-test-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-test-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-test-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9e7342b..0000000
--- a/spring-test-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Test 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/24d92f69/spring-test-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-test-4.3.18.RELEASE/pom.xml b/spring-test-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..fc69321
--- /dev/null
+++ b/spring-test-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,225 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-test</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-test</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.jayway.jsonpath;version="[1,3)";resolution:=optional,
+            com.gargoylesoftware.htmlunit;resolution:=optional,
+            com.gargoylesoftware.htmlunit.util;resolution:=optional,
+            javax.activation;resolution:=optional,
+            javax.el;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.naming.spi;resolution:=optional,
+            javax.persistence;resolution:=optional,
+            javax.portlet;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.descriptor;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.servlet.jsp;resolution:=optional,
+            javax.servlet.jsp.el;resolution:=optional,
+            javax.servlet.jsp.tagext;resolution:=optional,
+            javax.sql;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            javax.xml.parsers;resolution:=optional,
+            javax.xml.transform,
+            javax.xml.transform.dom,
+            javax.xml.xpath;resolution:=optional,
+            javax.websocket;resolution:=optional, 
+            javax.websocket.server;resolution:=optional, 
+            junit.framework;version="[4,5)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.http.cookie;resolution:=optional,
+            org.apache.http.impl.cookie;resolution:=optional,
+            org.apache.taglibs.standard.lang.support;version="[1.2,2)";resolution:=optional,
+            org.aspectj.weaver.loadtime;version="[1.8,2)";resolution:=optional,
+            org.custommonkey.xmlunit;version="[1.5,2)";resolution:=optional,
+            org.hamcrest;version="[1,2)";resolution:=optional,
+            org.hamcrest.core;version="[1,2)";resolution:=optional,
+            org.junit;version="[4,5)";resolution:=optional,
+            org.junit.internal;version="[4,5)";resolution:=optional,
+            org.junit.internal.runners.model;version="[4,5)";resolution:=optional,
+            org.junit.internal.runners.statements;version="[4,5)";resolution:=optional,
+            org.junit.rules;version="[4,5)";resolution:=optional,
+            org.junit.runner;version="[4,5)";resolution:=optional,
+            org.junit.runner.notification;version="[4,5)";resolution:=optional,
+            org.junit.runners;version="[4,5)";resolution:=optional,
+            org.junit.runners.model;version="[4,5)";resolution:=optional,
+            org.openqa.selenium;version="[2,4)";resolution:=optional,
+            org.openqa.selenium.htmlunit;version="[2,4)";resolution:=optional,
+            org.skyscreamer.jsonassert;resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.groovy;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.env;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.io;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.style;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.dao;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.format.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.client;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.converter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.instrument.classloading;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jdbc.core;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jdbc.core.simple;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jdbc.datasource.init;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.orm.jpa;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.orm.jpa.persistenceunit;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.ui;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util.xml;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.validation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.accept;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.bind.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.client;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.client.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.request;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.request.async;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.method;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.method.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.multipart;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.portlet.multipart;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.config.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.handler;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.i18n;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.mvc.method.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.theme;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.view;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.util;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.testng;resolution:=optional,
+            org.testng.annotations;resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>META-INF/spring.*</include>
+                                    </includes>
+                                </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/24d92f69/spring-test-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-test-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-test-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9e7342b
--- /dev/null
+++ b/spring-test-4.3.18.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 Test 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/24d92f69/spring-tx-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-tx-4.3.17.RELEASE/pom.xml b/spring-tx-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index f38b7f1..0000000
--- a/spring-tx-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,175 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-tx</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-tx</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.ibm.websphere.uow;resolution:=optional,
-            com.ibm.wsspi.uow;resolution:=optional,
-            javax.ejb;resolution:=optional,
-            javax.management;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.resource;resolution:=optional,
-            javax.resource.cci;resolution:=optional,
-            javax.resource.spi;resolution:=optional,
-            javax.resource.spi.endpoint;resolution:=optional,
-            javax.resource.spi.work;resolution:=optional,
-            javax.transaction;version="[1.2,2)";resolution:=optional,
-            javax.transaction.xa;version="[1.2,2)";resolution:=optional,
-            org.aopalliance.aop;version="[1,2)";resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.config;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.scope;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)",            
-            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
-            org.springframework.beans.propertyeditors;version="[${pkgVersion},4.4)",
-            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.env;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.core.type;version="[${pkgVersion},4.4)",
-            org.springframework.jndi;version="[${pkgVersion},4.4)",
-            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
-            org.springframework.util.xml;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.core;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)",
-            org.springframework.cglib.reflect;version="[${pkgVersion},4.4)",
-            org.w3c.dom;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/24d92f69/spring-tx-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-tx-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-tx-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 935d8fd..0000000
--- a/spring-tx-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Transaction (TX) 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/24d92f69/spring-tx-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-tx-4.3.18.RELEASE/pom.xml b/spring-tx-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..75b3d9f
--- /dev/null
+++ b/spring-tx-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,174 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-tx</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-tx</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.ibm.websphere.uow;resolution:=optional,
+            com.ibm.wsspi.uow;resolution:=optional,
+            javax.ejb;resolution:=optional,
+            javax.management;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.resource;resolution:=optional,
+            javax.resource.cci;resolution:=optional,
+            javax.resource.spi;resolution:=optional,
+            javax.resource.spi.endpoint;resolution:=optional,
+            javax.resource.spi.work;resolution:=optional,
+            javax.transaction;version="[1.2,2)";resolution:=optional,
+            javax.transaction.xa;version="[1.2,2)";resolution:=optional,
+            org.aopalliance.aop;version="[1,2)";resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.scope;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)",            
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
+            org.springframework.beans.propertyeditors;version="[${pkgVersion},4.4)",
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.env;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.core.type;version="[${pkgVersion},4.4)",
+            org.springframework.jndi;version="[${pkgVersion},4.4)",
+            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
+            org.springframework.util.xml;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.core;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.reflect;version="[${pkgVersion},4.4)",
+            org.w3c.dom;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-tx-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-tx-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-tx-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..935d8fd
--- /dev/null
+++ b/spring-tx-4.3.18.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 Transaction (TX) module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[08/17] servicemix-bundles git commit: [SM-3747] Create OSGi bundle for libphnenumber 8.9.8

Posted by ac...@apache.org.
[SM-3747] Create OSGi bundle for libphnenumber 8.9.8


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

Branch: refs/heads/master
Commit: 5060d6ff03a699d5b9a35822bf1207f46eabfb9c
Parents: 24d92f6
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Wed Jun 20 16:39:53 2018 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 28 14:13:15 2018 +0200

----------------------------------------------------------------------
 libphonenumber-8.9.7/pom.xml                    | 105 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  12 ---
 libphonenumber-8.9.8/pom.xml                    | 104 ++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 +++
 pom.xml                                         |   1 +
 5 files changed, 117 insertions(+), 117 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5060d6ff/libphonenumber-8.9.7/pom.xml
----------------------------------------------------------------------
diff --git a/libphonenumber-8.9.7/pom.xml b/libphonenumber-8.9.7/pom.xml
deleted file mode 100644
index 423fedd..0000000
--- a/libphonenumber-8.9.7/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.libphonenumber</artifactId>
-    <version>8.9.7_2-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.googlecode.libphonenumber</pkgGroupId>
-        <pkgArtifactId>libphonenumber</pkgArtifactId>
-        <pkgVersion>8.9.7</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            com.google.i18n.phonenumbers
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-        </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>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </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/5060d6ff/libphonenumber-8.9.7/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/libphonenumber-8.9.7/src/main/resources/OSGI-INF/bundle.info b/libphonenumber-8.9.7/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 708a46f..0000000
--- a/libphonenumber-8.9.7/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,12 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Google's common Java library for parsing, formatting, storing and validating international phone numbers.
-    Optimized for running on smartphones.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttps://github.com/googlei18n/libphonenumber\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5060d6ff/libphonenumber-8.9.8/pom.xml
----------------------------------------------------------------------
diff --git a/libphonenumber-8.9.8/pom.xml b/libphonenumber-8.9.8/pom.xml
new file mode 100644
index 0000000..b53a8ce
--- /dev/null
+++ b/libphonenumber-8.9.8/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.libphonenumber</artifactId>
+    <version>8.9.8_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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>com.googlecode.libphonenumber</pkgGroupId>
+        <pkgArtifactId>libphonenumber</pkgArtifactId>
+        <pkgVersion>8.9.8</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.google.i18n.phonenumbers
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+        </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>
+                                    <includes>
+                                        <include>META-INF/services/**</include>
+                                    </includes>
+                                </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/5060d6ff/libphonenumber-8.9.8/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/libphonenumber-8.9.8/src/main/resources/OSGI-INF/bundle.info b/libphonenumber-8.9.8/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..708a46f
--- /dev/null
+++ b/libphonenumber-8.9.8/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,12 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Google's common Java library for parsing, formatting, storing and validating international phone numbers.
+    Optimized for running on smartphones.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/googlei18n/libphonenumber\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5060d6ff/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b0ffcfe..9c41da4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,6 +64,7 @@
         <module>spring-webmvc-4.3.18.RELEASE</module>
         <module>spring-webmvc-portlet-4.3.18.RELEASE</module>
         <module>spring-websocket-4.3.18.RELEASE</module>
+        <module>libphonenumber-8.9.8</module>
         <module>aws-java-sdk-1.10.52</module>
     </modules>
 


[02/17] servicemix-bundles git commit: [SM-3744] Create OSGi bundles for Spring 4.3.18.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-websocket-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-websocket-4.3.18.RELEASE/pom.xml b/spring-websocket-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..5e13989
--- /dev/null
+++ b/spring-websocket-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,222 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-websocket</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-websocket</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson.core.io;resolution:=optional,
+            com.fasterxml.jackson.databind;resolution:=optional,
+            io.undertow.client;resolution:=optional,
+            io.undertow.connector;resolution:=optional,
+            io.undertow.server;resolution:=optional,
+            io.undertow.servlet.api;resolution:=optional,
+            io.undertow.servlet.websockets;resolution:=optional,
+            io.undertow.util;resolution:=optional,
+            io.undertow.websockets.core;resolution:=optional,
+            io.undertow.websockets.core.protocol;resolution:=optional,
+            io.undertow.websockets.core.protocol.version07;resolution:=optional,
+            io.undertow.websockets.core.protocol.version08;resolution:=optional,
+            io.undertow.websockets.core.protocol.version13;resolution:=optional,
+            io.undertow.websockets.jsr;resolution:=optional,
+            io.undertow.websockets.jsr.annotated;resolution:=optional,
+            io.undertow.websockets.jsr.handshake;resolution:=optional,
+            io.undertow.websockets.spi;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.websocket;resolution:=optional,
+            javax.websocket.server;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.tomcat.websocket.server;resolution:=optional,
+            org.eclipse.jetty.client;resolution:=optional,
+            org.eclipse.jetty.client.api;resolution:=optional,
+            org.eclipse.jetty.client.util;resolution:=optional,
+            org.eclipse.jetty.http;resolution:=optional,
+            org.eclipse.jetty.websocket.api;resolution:=optional,
+            org.eclipse.jetty.websocket.api.annotations;resolution:=optional,
+            org.eclipse.jetty.websocket.api.extensions;resolution:=optional,
+            org.eclipse.jetty.websocket.client;resolution:=optional,
+            org.eclipse.jetty.websocket.common;resolution:=optional,
+            org.eclipse.jetty.websocket.server;resolution:=optional,
+            org.eclipse.jetty.websocket.servlet;resolution:=optional,
+            org.glassfish.tyrus.core;resolution:=optional,
+            org.glassfish.tyrus.servlet;resolution:=optional,
+            org.glassfish.tyrus.server;resolution:=optional,
+            org.glassfish.tyrus.spi;resolution:=optional,
+            org.glassfish.tyrus.websockets;resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.http;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.client;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.converter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.converter.json;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.http.server;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.converter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.handler;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.handler.annotation.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.handler.invocation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.simp;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.simp.annotation.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.simp.broker;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.simp.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.simp.stomp;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.simp.user;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.messaging.tcp;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling.concurrent;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
+            org.springframework.util.xml;version="[${pkgVersion},4.4)",
+            org.springframework.web;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.client;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.cors;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.filter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.method;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.servlet.handler;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.web.util;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xnio;resolution:=optional,
+            org.xnio.channels;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-websocket-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-websocket-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-websocket-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..a3feb22
--- /dev/null
+++ b/spring-websocket-4.3.18.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 WebSocket module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[14/17] servicemix-bundles git commit: [SM-3746] Create OSGi bundles for Spring Security 5.0.6.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/d8e30656/spring-security-test-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-test-5.0.6.RELEASE/pom.xml b/spring-security-test-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..9447685
--- /dev/null
+++ b/spring-security-test-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-test</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-test</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.test
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !org.springframework.security.test*,
+            *
+        </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/d8e30656/spring-security-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-test-5.0.6.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/d8e30656/spring-security-web-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-web-5.0.5.RELEASE/pom.xml b/spring-security-web-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 5a90bb7..0000000
--- a/spring-security-web-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-web</artifactId>
-    <version>5.0.5.RELEASE_2-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>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.web
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            !org.springframework.security.web*,
-            *
-        </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/d8e30656/spring-security-web-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-web-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-web-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 957919b..0000000
--- a/spring-security-web-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/d8e30656/spring-security-web-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-web-5.0.6.RELEASE/pom.xml b/spring-security-web-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..5249f5c
--- /dev/null
+++ b/spring-security-web-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-web</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-web</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.web
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !org.springframework.security.web*,
+            *
+        </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/d8e30656/spring-security-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-web-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..957919b
--- /dev/null
+++ b/spring-security-web-5.0.6.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


[15/17] servicemix-bundles git commit: [SM-3746] Create OSGi bundles for Spring Security 5.0.6.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/d8e30656/spring-security-ldap-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-ldap-5.0.5.RELEASE/pom.xml b/spring-security-ldap-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 18b1d4b..0000000
--- a/spring-security-ldap-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-ldap</artifactId>
-    <version>5.0.5.RELEASE_2-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-ldap</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.ldap
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.unboundid.ldap.listener*;resolution:=optional,
-            org.apache.directory*;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>
-        </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/d8e30656/spring-security-ldap-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-ldap-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-ldap-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index d87e563..0000000
--- a/spring-security-ldap-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Security Ldap 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/d8e30656/spring-security-ldap-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-ldap-5.0.6.RELEASE/pom.xml b/spring-security-ldap-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..1a6a54a
--- /dev/null
+++ b/spring-security-ldap-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,106 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-ldap</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-ldap</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.ldap
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.unboundid.ldap.listener*;resolution:=optional,
+            org.apache.directory*;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>
+        </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/d8e30656/spring-security-ldap-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-ldap-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-ldap-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..d87e563
--- /dev/null
+++ b/spring-security-ldap-5.0.6.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 Ldap 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/d8e30656/spring-security-messaging-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-messaging-5.0.5.RELEASE/pom.xml b/spring-security-messaging-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 323af2d..0000000
--- a/spring-security-messaging-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-messaging</artifactId>
-    <version>5.0.5.RELEASE_2-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-messaging</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.messaging
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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/d8e30656/spring-security-messaging-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-messaging-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-messaging-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-messaging-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-messaging-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-messaging-5.0.6.RELEASE/pom.xml b/spring-security-messaging-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..dd004fd
--- /dev/null
+++ b/spring-security-messaging-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-messaging</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-messaging</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.messaging
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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/d8e30656/spring-security-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-messaging-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-messaging-5.0.6.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/d8e30656/spring-security-oauth2-client-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-client-5.0.5.RELEASE/pom.xml b/spring-security-oauth2-client-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index b6e45c8..0000000
--- a/spring-security-oauth2-client-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-oauth2-client</artifactId>
-    <version>5.0.5.RELEASE_2-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-oauth2-client</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.oauth2.client
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.nimbusds*;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>
-        </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/d8e30656/spring-security-oauth2-client-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-client-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-oauth2-client-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-oauth2-client-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-oauth2-client-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-client-5.0.6.RELEASE/pom.xml b/spring-security-oauth2-client-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..f41bcac
--- /dev/null
+++ b/spring-security-oauth2-client-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-oauth2-client</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-oauth2-client</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.oauth2.client
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.nimbusds*;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>
+        </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/d8e30656/spring-security-oauth2-client-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-client-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-oauth2-client-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-oauth2-client-5.0.6.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/d8e30656/spring-security-oauth2-core-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-core-5.0.5.RELEASE/pom.xml b/spring-security-oauth2-core-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 68f5362..0000000
--- a/spring-security-oauth2-core-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-oauth2-core</artifactId>
-    <version>5.0.5.RELEASE_2-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-oauth2-core</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.oauth2.core
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.nimbusds*;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>
-        </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/d8e30656/spring-security-oauth2-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-oauth2-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-oauth2-core-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-oauth2-core-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-core-5.0.6.RELEASE/pom.xml b/spring-security-oauth2-core-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..4a6484d
--- /dev/null
+++ b/spring-security-oauth2-core-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-oauth2-core</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-oauth2-core</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.oauth2.core
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.nimbusds*;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>
+        </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/d8e30656/spring-security-oauth2-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-oauth2-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-oauth2-core-5.0.6.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/d8e30656/spring-security-oauth2-jose-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-jose-5.0.5.RELEASE/pom.xml b/spring-security-oauth2-jose-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index f952c46..0000000
--- a/spring-security-oauth2-jose-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-oauth2-jose</artifactId>
-    <version>5.0.5.RELEASE_2-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-oauth2-jose</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.oauth2.jose
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.nimbusds*;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>
-        </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/d8e30656/spring-security-oauth2-jose-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-jose-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-oauth2-jose-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-oauth2-jose-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-oauth2-jose-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-jose-5.0.6.RELEASE/pom.xml b/spring-security-oauth2-jose-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..d26e782
--- /dev/null
+++ b/spring-security-oauth2-jose-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-oauth2-jose</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-oauth2-jose</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.oauth2.jose
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.nimbusds*;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>
+        </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/d8e30656/spring-security-oauth2-jose-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-oauth2-jose-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-oauth2-jose-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-oauth2-jose-5.0.6.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/d8e30656/spring-security-remoting-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-remoting-5.0.5.RELEASE/pom.xml b/spring-security-remoting-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 9eb92c1..0000000
--- a/spring-security-remoting-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-remoting</artifactId>
-    <version>5.0.5.RELEASE_2-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-remoting</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.remoting
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            *
-        </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/d8e30656/spring-security-remoting-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-remoting-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-remoting-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-remoting-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-remoting-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-remoting-5.0.6.RELEASE/pom.xml b/spring-security-remoting-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..866956e
--- /dev/null
+++ b/spring-security-remoting-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,104 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-remoting</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-remoting</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.remoting
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </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/d8e30656/spring-security-remoting-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-remoting-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-remoting-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9412c54
--- /dev/null
+++ b/spring-security-remoting-5.0.6.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/d8e30656/spring-security-taglibs-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-taglibs-5.0.5.RELEASE/pom.xml b/spring-security-taglibs-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 62f65cd..0000000
--- a/spring-security-taglibs-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-taglibs</artifactId>
-    <version>5.0.5.RELEASE_2-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>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.taglibs
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            !org.springframework.security.taglibs*,
-            *
-        </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>
-                                    <includes>
-                                        <include>META-INF/security.tld</include>
-                                    </includes>
-                                </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/d8e30656/spring-security-taglibs-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-taglibs-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-taglibs-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 1dac01a..0000000
--- a/spring-security-taglibs-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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/d8e30656/spring-security-taglibs-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-taglibs-5.0.6.RELEASE/pom.xml b/spring-security-taglibs-5.0.6.RELEASE/pom.xml
new file mode 100644
index 0000000..6e80057
--- /dev/null
+++ b/spring-security-taglibs-5.0.6.RELEASE/pom.xml
@@ -0,0 +1,105 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-security-taglibs</artifactId>
+    <version>5.0.6.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework.security</pkgGroupId>
+        <pkgArtifactId>spring-security-taglibs</pkgArtifactId>
+        <pkgVersion>5.0.6.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework.security.taglibs
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !org.springframework.security.taglibs*,
+            *
+        </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>
+                                    <includes>
+                                        <include>META-INF/security.tld</include>
+                                    </includes>
+                                </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/d8e30656/spring-security-taglibs-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-taglibs-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-taglibs-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1dac01a
--- /dev/null
+++ b/spring-security-taglibs-5.0.6.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/d8e30656/spring-security-test-5.0.5.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-test-5.0.5.RELEASE/pom.xml b/spring-security-test-5.0.5.RELEASE/pom.xml
deleted file mode 100644
index 6029b6e..0000000
--- a/spring-security-test-5.0.5.RELEASE/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-security-test</artifactId>
-    <version>5.0.5.RELEASE_2-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-test</pkgArtifactId>
-        <pkgVersion>5.0.5.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework.security.test
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            !org.springframework.security.test*,
-            *
-        </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/d8e30656/spring-security-test-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-security-test-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-security-test-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9412c54..0000000
--- a/spring-security-test-5.0.5.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\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


[06/17] servicemix-bundles git commit: [SM-3744] Create OSGi bundles for Spring 4.3.18.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-context-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-4.3.18.RELEASE/pom.xml b/spring-context-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..24af93e
--- /dev/null
+++ b/spring-context-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,243 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-context</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-context</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            bsh;version="[2,3)";resolution:=optional,
+            com.ibm.websphere.management;resolution:=optional,
+            com.sun.net.httpserver;resolution:=optional,
+            edu.emory.mathcs.backport.java.util.concurrent;version="[3,4)";resolution:=optional,
+            groovy.lang;version="[2.4,3)";resolution:=optional,
+            javax.annotation;resolution:=optional,
+            javax.ejb;resolution:=optional,
+            javax.enterprise.concurrent;resolution:=optional,
+            javax.inject;resolution:=optional,
+            javax.interceptor;resolution:=optional,
+            javax.jms;resolution:=optional,
+            javax.management;resolution:=optional,
+            javax.management.modelmbean;resolution:=optional,
+            javax.management.openmbean;resolution:=optional,
+            javax.management.remote;resolution:=optional,
+            javax.money;resolution:=optional, 
+            javax.money.format;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.persistence;resolution:=optional,
+            javax.persistence.spi;resolution:=optional,
+            javax.rmi;resolution:=optional,
+            javax.script;resolution:=optional,
+            javax.validation;resolution:=optional,
+            javax.validation.bootstrap;resolution:=optional,
+            javax.validation.metadata;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            javax.xml.ws;resolution:=optional,
+            org.aopalliance.aop;version="[1,2)";resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.aspectj.weaver.loadtime;version="[1.8.6,2)";resolution:=optional,
+            org.codehaus.groovy.control;version="[2.4,3)";resolution:=optional,
+            org.codehaus.groovy.control.customizers;version="[2.4,3)";resolution:=optional,
+            org.hibernate.validator;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.messageinterpolation;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.method;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.resourceloading;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.spi.resourceloading;version="[4,6)";resolution:=optional,
+            org.joda.time;version="[2,3)";resolution:=optional,
+            org.joda.time.format;version="[2,3)";resolution:=optional,
+            org.jruby;version="[1.7,2)";resolution:=optional,
+            org.jruby.ast;version="[1.7,2)";resolution:=optional,
+            org.jruby.exceptions;version="[1.7,2)";resolution:=optional,
+            org.jruby.javasupport;version="[1.7,2)";resolution:=optional,
+            org.jruby.runtime;version="[1.7,2)";resolution:=optional,
+            org.jruby.runtime.builtin;version="[1.7,2)";resolution:=optional,
+            org.omg.CORBA;resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.config;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework.adapter;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.scope;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.target;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.target.dynamic;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.asm;version="[${pkgVersion},4.4)",
+            org.springframework.beans;version="[${pkgVersion},4.4)",
+            org.springframework.beans.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.access;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},4.4)",
+            org.springframework.beans.factory.groovy;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.propertyeditors;version="[${pkgVersion},4.4)",
+            org.springframework.beans.support;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.core;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.proxy;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.transform;version="[${pkgVersion},4.4)",
+            org.springframework.cglib.reflect;version="[${pkgVersion},4.4)",
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert.converter;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.env;version="[${pkgVersion},4.4)",
+            org.springframework.core.io;version="[${pkgVersion},4.4)",
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.serializer.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.core.task.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.type;version="[${pkgVersion},4.4)",
+            org.springframework.core.type.classreading;version="[${pkgVersion},4.4)",
+            org.springframework.core.type.filter;version="[${pkgVersion},4.4)",
+            org.springframework.expression;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.expression.spel;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.expression.spel.standard;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.expression.spel.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.instrument;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.objenesis;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.orm.jpa.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)",
+            org.springframework.util.xml;version="[${pkgVersion},4.4)",
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.xml</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/24d92f69/spring-context-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..4c368f9
--- /dev/null
+++ b/spring-context-4.3.18.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 Context 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/24d92f69/spring-context-support-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-support-4.3.17.RELEASE/pom.xml b/spring-context-support-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 30dc483..0000000
--- a/spring-context-support-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,204 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-context-support</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-context-support</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.github.benmanes.caffeine.cache;resolution:=optional,
-            javax.cache.processor;resolution:=optional,
-            com.google.common.cache;resolution:=optional,
-            com.google.common.util.concurrent;resolution:=optional,
-            commonj.timers;version="[1.1.0,2)";resolution:=optional,
-            commonj.work;version="[1.1.0,2)";resolution:=optional,
-            freemarker.cache;version="[2.3,3)";resolution:=optional,
-            freemarker.template;version="[2.3,3)";resolution:=optional,
-            javax.activation;resolution:=optional,
-            javax.cache;resolution:=optional,
-            javax.cache.annotation;resolution:=optional,
-            javax.cache.spi;resolution:=optional,
-            javax.mail;resolution:=optional,
-            javax.mail.internet;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.sql;resolution:=optional,
-            net.sf.ehcache;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.bootstrap;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.config;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.constructs.blocking;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.event;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.store;version="[2,3)";resolution:=optional,
-            net.sf.jasperreports.engine;version="[6,7)";resolution:=optional,
-            net.sf.jasperreports.engine.data;version="[6,7)";resolution:=optional,
-            net.sf.jasperreports.engine.export;version="[6,7)";resolution:=optional,
-            org.aopalliance.aop;resolution:=optional,
-            org.aopalliance.intercept;resolution:=optional,
-            org.apache.commons.collections;version="[3,4)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.velocity;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.app;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.context;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.exception;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime.log;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime.resource;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime.resource.loader;version="[1.7,2)";resolution:=optional,
-            org.quartz;version="[2,3)";resolution:=optional,
-            org.quartz.impl;version="[2,3)";resolution:=optional,
-            org.quartz.impl.jdbcjobstore;version="[2,3)";resolution:=optional,
-            org.quartz.impl.triggers;version="[2,3)";resolution:=optional,
-            org.quartz.simpl;version="[2,3)";resolution:=optional,
-            org.quartz.spi;version="[2,3)";resolution:=optional,
-            org.quartz.utils;version="[2,3)";resolution:=optional,
-            org.quartz.xml;version="[2,3)";resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.beans.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.cache.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},4.4)",
-            org.springframework.context.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.context.expression;version="[${pkgVersion},4.4)",
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
-            org.springframework.core.io;version="[${pkgVersion},4.4)",
-            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.task;version="[${pkgVersion},4.4)",
-            org.springframework.jdbc.datasource;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jdbc.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.scheduling.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.transaction.support;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},4.4)",
-            org.springframework.util.concurrent;version="[${pkgVersion},4.4)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/mime.types</include>
-                                    </includes>
-                                </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/24d92f69/spring-context-support-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-support-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-support-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index f77670e..0000000
--- a/spring-context-support-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Context Support 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/24d92f69/spring-context-support-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-support-4.3.18.RELEASE/pom.xml b/spring-context-support-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..60b3b4a
--- /dev/null
+++ b/spring-context-support-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,203 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-context-support</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-context-support</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.github.benmanes.caffeine.cache;resolution:=optional,
+            javax.cache.processor;resolution:=optional,
+            com.google.common.cache;resolution:=optional,
+            com.google.common.util.concurrent;resolution:=optional,
+            commonj.timers;version="[1.1.0,2)";resolution:=optional,
+            commonj.work;version="[1.1.0,2)";resolution:=optional,
+            freemarker.cache;version="[2.3,3)";resolution:=optional,
+            freemarker.template;version="[2.3,3)";resolution:=optional,
+            javax.activation;resolution:=optional,
+            javax.cache;resolution:=optional,
+            javax.cache.annotation;resolution:=optional,
+            javax.cache.spi;resolution:=optional,
+            javax.mail;resolution:=optional,
+            javax.mail.internet;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.sql;resolution:=optional,
+            net.sf.ehcache;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.bootstrap;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.config;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.constructs.blocking;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.event;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.store;version="[2,3)";resolution:=optional,
+            net.sf.jasperreports.engine;version="[6,7)";resolution:=optional,
+            net.sf.jasperreports.engine.data;version="[6,7)";resolution:=optional,
+            net.sf.jasperreports.engine.export;version="[6,7)";resolution:=optional,
+            org.aopalliance.aop;resolution:=optional,
+            org.aopalliance.intercept;resolution:=optional,
+            org.apache.commons.collections;version="[3,4)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.velocity;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.app;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.context;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.exception;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime.log;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime.resource;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime.resource.loader;version="[1.7,2)";resolution:=optional,
+            org.quartz;version="[2,3)";resolution:=optional,
+            org.quartz.impl;version="[2,3)";resolution:=optional,
+            org.quartz.impl.jdbcjobstore;version="[2,3)";resolution:=optional,
+            org.quartz.impl.triggers;version="[2,3)";resolution:=optional,
+            org.quartz.simpl;version="[2,3)";resolution:=optional,
+            org.quartz.spi;version="[2,3)";resolution:=optional,
+            org.quartz.utils;version="[2,3)";resolution:=optional,
+            org.quartz.xml;version="[2,3)";resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.beans.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.annotation;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.interceptor;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.cache.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},4.4)",
+            org.springframework.context.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.context.expression;version="[${pkgVersion},4.4)",
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.annotation;version="[${pkgVersion},4.4)",
+            org.springframework.core.io;version="[${pkgVersion},4.4)",
+            org.springframework.core.io.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.task;version="[${pkgVersion},4.4)",
+            org.springframework.jdbc.datasource;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jdbc.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.scheduling.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.transaction.support;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},4.4)",
+            org.springframework.util.concurrent;version="[${pkgVersion},4.4)"
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/mime.types</include>
+                                    </includes>
+                                </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/24d92f69/spring-context-support-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-support-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-support-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..f77670e
--- /dev/null
+++ b/spring-context-support-4.3.18.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 Context Support 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/24d92f69/spring-core-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-core-4.3.17.RELEASE/pom.xml b/spring-core-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index b39c7e3..0000000
--- a/spring-core-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,149 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-core</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.net;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.bind;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            javax.xml.stream;resolution:=optional,
-            javax.xml.stream.events;resolution:=optional,
-            javax.xml.stream.util;resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.sax;resolution:=optional,
-            javax.xml.transform.stax;resolution:=optional,
-            joptsimple;version="[4,5)";resolution:=optional,
-            net.sf.cglib.beans;version="[3,4)";resolution:=optional,
-            sun.misc;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.commons.codec.binary;resolution:=optional,
-            org.apache.log4j;version="[1.2.15,2)";resolution:=optional,
-            org.apache.log4j.xml;version="[1.2.15,2)";resolution:=optional,
-            org.apache.tools.ant;version="[1.7,2)";resolution:=optional,
-            org.apache.tools.ant.types;version="[1.7,2)";resolution:=optional,
-            org.aspectj.bridge;version="[1.8,2)";resolution:=optional,
-            org.aspectj.weaver;version="[1.8,2)";resolution:=optional,
-            org.aspectj.weaver.bcel;version="[1.8,2)";resolution:=optional,
-            org.aspectj.weaver.patterns;version="[1.8,2)";resolution:=optional,
-            org.eclipse.core.runtime;common="split";resolution:=optional,
-            org.jboss.vfs;version="[3,4)";resolution:=optional,
-            org.jboss.virtual;version="[2.1.0.GA,3)";resolution:=optional,
-            org.objectweb.asm;version="[3.2,4)";resolution:=optional,
-            org.springframework.asm.tree;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.springframework.asm.util;version="[${pkgVersion},4.4)";resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional,
-            org.xml.sax.ext;resolution:=optional,
-            org.xml.sax.helpers;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>commons-logging</groupId>
-                    <artifactId>commons-logging</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>commons-logging</groupId>
-                    <artifactId>commons-logging</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/24d92f69/spring-core-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-core-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-core-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8a19b86..0000000
--- a/spring-core-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework 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/24d92f69/spring-core-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-core-4.3.18.RELEASE/pom.xml b/spring-core-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..6aeabb0
--- /dev/null
+++ b/spring-core-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,148 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-core</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.net;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.bind;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            javax.xml.stream;resolution:=optional,
+            javax.xml.stream.events;resolution:=optional,
+            javax.xml.stream.util;resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.sax;resolution:=optional,
+            javax.xml.transform.stax;resolution:=optional,
+            joptsimple;version="[4,5)";resolution:=optional,
+            net.sf.cglib.beans;version="[3,4)";resolution:=optional,
+            sun.misc;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.commons.codec.binary;resolution:=optional,
+            org.apache.log4j;version="[1.2.15,2)";resolution:=optional,
+            org.apache.log4j.xml;version="[1.2.15,2)";resolution:=optional,
+            org.apache.tools.ant;version="[1.7,2)";resolution:=optional,
+            org.apache.tools.ant.types;version="[1.7,2)";resolution:=optional,
+            org.aspectj.bridge;version="[1.8,2)";resolution:=optional,
+            org.aspectj.weaver;version="[1.8,2)";resolution:=optional,
+            org.aspectj.weaver.bcel;version="[1.8,2)";resolution:=optional,
+            org.aspectj.weaver.patterns;version="[1.8,2)";resolution:=optional,
+            org.eclipse.core.runtime;common="split";resolution:=optional,
+            org.jboss.vfs;version="[3,4)";resolution:=optional,
+            org.jboss.virtual;version="[2.1.0.GA,3)";resolution:=optional,
+            org.objectweb.asm;version="[3.2,4)";resolution:=optional,
+            org.springframework.asm.tree;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.springframework.asm.util;version="[${pkgVersion},4.4)";resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional,
+            org.xml.sax.ext;resolution:=optional,
+            org.xml.sax.helpers;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/24d92f69/spring-core-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-core-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-core-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..8a19b86
--- /dev/null
+++ b/spring-core-4.3.18.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 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/24d92f69/spring-expression-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-expression-4.3.17.RELEASE/pom.xml b/spring-expression-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 3e7acbf..0000000
--- a/spring-expression-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,123 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-expression</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-expression</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional, 
-            org.springframework.asm;version="[${pkgVersion},4.4)",
-            org.springframework.core;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert;version="[${pkgVersion},4.4)",
-            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
-            org.springframework.core.style;version="[${pkgVersion},4.4)",
-            org.springframework.util;version="[${pkgVersion},4.4)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/24d92f69/spring-expression-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-expression-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-expression-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index d0e4058..0000000
--- a/spring-expression-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Expression 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/24d92f69/spring-expression-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-expression-4.3.18.RELEASE/pom.xml b/spring-expression-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..5114451
--- /dev/null
+++ b/spring-expression-4.3.18.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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-expression</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-expression</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional, 
+            org.springframework.asm;version="[${pkgVersion},4.4)",
+            org.springframework.core;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert;version="[${pkgVersion},4.4)",
+            org.springframework.core.convert.support;version="[${pkgVersion},4.4)",
+            org.springframework.core.style;version="[${pkgVersion},4.4)",
+            org.springframework.util;version="[${pkgVersion},4.4)"
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/24d92f69/spring-expression-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-expression-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-expression-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..d0e4058
--- /dev/null
+++ b/spring-expression-4.3.18.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 Expression 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/24d92f69/spring-instrument-4.3.17.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-instrument-4.3.17.RELEASE/pom.xml b/spring-instrument-4.3.17.RELEASE/pom.xml
deleted file mode 100644
index 3d5f45e..0000000
--- a/spring-instrument-4.3.17.RELEASE/pom.xml
+++ /dev/null
@@ -1,116 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-instrument</artifactId>
-    <version>4.3.17.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-instrument</pkgArtifactId>
-        <pkgVersion>4.3.17.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-
-        </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>
-                            <transformers>
-				<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-				    <manifestEntries>
-                                         <Premain-Class>org.springframework.instrument.InstrumentationSavingAgent</Premain-Class>
-                                         <Agent-Class>org.springframework.instrument.InstrumentationSavingAgent</Agent-Class>
-                                         <Can-Redefine-Classes>true</Can-Redefine-Classes>
-                                         <Can-Retransform-Classes>true</Can-Retransform-Classes>
-                                         <Can-Set-Native-Method-Prefix>false</Can-Set-Native-Method-Prefix>
-				    </manifestEntries>
-				</transformer>
-			    </transformers>
-                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
-                            <createDependencyReducedPom>true</createDependencyReducedPom>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-instrument-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-instrument-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-instrument-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8e80695..0000000
--- a/spring-instrument-4.3.17.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Instrument 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/24d92f69/spring-instrument-4.3.18.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-instrument-4.3.18.RELEASE/pom.xml b/spring-instrument-4.3.18.RELEASE/pom.xml
new file mode 100644
index 0000000..f2e1dd9
--- /dev/null
+++ b/spring-instrument-4.3.18.RELEASE/pom.xml
@@ -0,0 +1,115 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-instrument</artifactId>
+    <version>4.3.18.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-instrument</pkgArtifactId>
+        <pkgVersion>4.3.18.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+
+        </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>
+                            <transformers>
+				<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+				    <manifestEntries>
+                                         <Premain-Class>org.springframework.instrument.InstrumentationSavingAgent</Premain-Class>
+                                         <Agent-Class>org.springframework.instrument.InstrumentationSavingAgent</Agent-Class>
+                                         <Can-Redefine-Classes>true</Can-Redefine-Classes>
+                                         <Can-Retransform-Classes>true</Can-Retransform-Classes>
+                                         <Can-Set-Native-Method-Prefix>false</Can-Set-Native-Method-Prefix>
+				    </manifestEntries>
+				</transformer>
+			    </transformers>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24d92f69/spring-instrument-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-instrument-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-instrument-4.3.18.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..8e80695
--- /dev/null
+++ b/spring-instrument-4.3.18.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 Instrument module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[12/17] servicemix-bundles git commit: [SM-3745] Create OSGi bundles for Spring 5.0.7.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-context-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-5.0.7.RELEASE/pom.xml b/spring-context-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..384c3f7
--- /dev/null
+++ b/spring-context-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,247 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-context</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-context</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            bsh;version="[2,3)";resolution:=optional,
+            com.ibm.websphere.management;resolution:=optional,
+            com.sun.net.httpserver;resolution:=optional,
+            edu.emory.mathcs.backport.java.util.concurrent;version="[3,4)";resolution:=optional,
+            groovy.lang;version="[2.4,3)";resolution:=optional,
+            javax.annotation;resolution:=optional,
+            javax.ejb;resolution:=optional,
+            javax.enterprise.concurrent;resolution:=optional,
+            javax.inject;resolution:=optional,
+            javax.interceptor;resolution:=optional,
+            javax.jms;resolution:=optional,
+            javax.management;resolution:=optional,
+            javax.management.modelmbean;resolution:=optional,
+            javax.management.openmbean;resolution:=optional,
+            javax.management.remote;resolution:=optional,
+            javax.money;resolution:=optional, 
+            javax.money.format;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.persistence;resolution:=optional,
+            javax.persistence.spi;resolution:=optional,
+            javax.rmi;resolution:=optional,
+            javax.script;resolution:=optional,
+            javax.validation;resolution:=optional,
+            javax.validation.bootstrap;resolution:=optional,
+            javax.validation.constraints;resolution:=optional,
+            javax.validation.constraintvalidation;resolution:=optional,
+            javax.validation.executable;resolution:=optional,
+            javax.validation.groups;resolution:=optional,
+            javax.validation.metadata;resolution:=optional,
+            javax.validation.spi;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            javax.xml.ws;resolution:=optional,
+            org.aopalliance.aop;version="[1,2)";resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.aspectj.weaver.loadtime;version="[1.8.6,2)";resolution:=optional,
+            org.codehaus.groovy.control;version="[2.4,3)";resolution:=optional,
+            org.codehaus.groovy.control.customizers;version="[2.4,3)";resolution:=optional,
+            org.hibernate.validator;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.messageinterpolation;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.method;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.resourceloading;version="[4,6)";resolution:=optional,
+            org.hibernate.validator.spi.resourceloading;version="[4,6)";resolution:=optional,
+            org.joda.time;version="[2,3)";resolution:=optional,
+            org.joda.time.format;version="[2,3)";resolution:=optional,
+            org.jruby;version="[1.7,2)";resolution:=optional,
+            org.jruby.ast;version="[1.7,2)";resolution:=optional,
+            org.jruby.exceptions;version="[1.7,2)";resolution:=optional,
+            org.jruby.javasupport;version="[1.7,2)";resolution:=optional,
+            org.jruby.runtime;version="[1.7,2)";resolution:=optional,
+            org.jruby.runtime.builtin;version="[1.7,2)";resolution:=optional,
+            org.omg.CORBA;resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework.adapter;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.scope;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.target;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.target.dynamic;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.asm;version="[${pkgVersion},5.1)",
+            org.springframework.beans;version="[${pkgVersion},5.1)",
+            org.springframework.beans.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.groovy;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.propertyeditors;version="[${pkgVersion},5.1)",
+            org.springframework.beans.support;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.core;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.transform;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.reflect;version="[${pkgVersion},5.1)",
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert.converter;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.env;version="[${pkgVersion},5.1)",
+            org.springframework.core.io;version="[${pkgVersion},5.1)",
+            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.serializer.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.core.task.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.type;version="[${pkgVersion},5.1)",
+            org.springframework.core.type.classreading;version="[${pkgVersion},5.1)",
+            org.springframework.core.type.filter;version="[${pkgVersion},5.1)",
+            org.springframework.expression;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.expression.spel;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.expression.spel.standard;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.expression.spel.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.instrument;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.objenesis;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.orm.jpa.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
+            org.springframework.util.xml;version="[${pkgVersion},5.1)",
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-aop</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-expression</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.xml</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-context-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..4c368f9
--- /dev/null
+++ b/spring-context-5.0.7.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 Context 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/899ecb96/spring-context-support-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-support-5.0.6.RELEASE/pom.xml b/spring-context-support-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index c0d61d5..0000000
--- a/spring-context-support-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,204 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-context-support</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-context-support</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.github.benmanes.caffeine.cache;resolution:=optional,
-            javax.cache.processor;resolution:=optional,
-            com.google.common.cache;resolution:=optional,
-            com.google.common.util.concurrent;resolution:=optional,
-            commonj.timers;version="[1.1.0,2)";resolution:=optional,
-            commonj.work;version="[1.1.0,2)";resolution:=optional,
-            freemarker.cache;version="[2.3,3)";resolution:=optional,
-            freemarker.template;version="[2.3,3)";resolution:=optional,
-            javax.activation;resolution:=optional,
-            javax.cache;resolution:=optional,
-            javax.cache.annotation;resolution:=optional,
-            javax.cache.spi;resolution:=optional,
-            javax.mail;resolution:=optional,
-            javax.mail.internet;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.sql;resolution:=optional,
-            net.sf.ehcache;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.bootstrap;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.config;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.constructs.blocking;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.event;version="[2,3)";resolution:=optional,
-            net.sf.ehcache.store;version="[2,3)";resolution:=optional,
-            net.sf.jasperreports.engine;version="[6,7)";resolution:=optional,
-            net.sf.jasperreports.engine.data;version="[6,7)";resolution:=optional,
-            net.sf.jasperreports.engine.export;version="[6,7)";resolution:=optional,
-            org.aopalliance.aop;resolution:=optional,
-            org.aopalliance.intercept;resolution:=optional,
-            org.apache.commons.collections;version="[3,4)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.velocity;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.app;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.context;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.exception;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime.log;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime.resource;version="[1.7,2)";resolution:=optional,
-            org.apache.velocity.runtime.resource.loader;version="[1.7,2)";resolution:=optional,
-            org.quartz;version="[2,3)";resolution:=optional,
-            org.quartz.impl;version="[2,3)";resolution:=optional,
-            org.quartz.impl.jdbcjobstore;version="[2,3)";resolution:=optional,
-            org.quartz.impl.triggers;version="[2,3)";resolution:=optional,
-            org.quartz.simpl;version="[2,3)";resolution:=optional,
-            org.quartz.spi;version="[2,3)";resolution:=optional,
-            org.quartz.utils;version="[2,3)";resolution:=optional,
-            org.quartz.xml;version="[2,3)";resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.cache.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},5.1)",
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.context.expression;version="[${pkgVersion},5.1)",
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.io;version="[${pkgVersion},5.1)",
-            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.jdbc.datasource;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jdbc.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.scheduling.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-context</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/mime.types</include>
-                                    </includes>
-                                </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/899ecb96/spring-context-support-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-support-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-support-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index f77670e..0000000
--- a/spring-context-support-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Context Support 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/899ecb96/spring-context-support-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-context-support-5.0.7.RELEASE/pom.xml b/spring-context-support-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..bdf66c5
--- /dev/null
+++ b/spring-context-support-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,203 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-context-support</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-context-support</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.github.benmanes.caffeine.cache;resolution:=optional,
+            javax.cache.processor;resolution:=optional,
+            com.google.common.cache;resolution:=optional,
+            com.google.common.util.concurrent;resolution:=optional,
+            commonj.timers;version="[1.1.0,2)";resolution:=optional,
+            commonj.work;version="[1.1.0,2)";resolution:=optional,
+            freemarker.cache;version="[2.3,3)";resolution:=optional,
+            freemarker.template;version="[2.3,3)";resolution:=optional,
+            javax.activation;resolution:=optional,
+            javax.cache;resolution:=optional,
+            javax.cache.annotation;resolution:=optional,
+            javax.cache.spi;resolution:=optional,
+            javax.mail;resolution:=optional,
+            javax.mail.internet;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.sql;resolution:=optional,
+            net.sf.ehcache;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.bootstrap;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.config;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.constructs.blocking;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.event;version="[2,3)";resolution:=optional,
+            net.sf.ehcache.store;version="[2,3)";resolution:=optional,
+            net.sf.jasperreports.engine;version="[6,7)";resolution:=optional,
+            net.sf.jasperreports.engine.data;version="[6,7)";resolution:=optional,
+            net.sf.jasperreports.engine.export;version="[6,7)";resolution:=optional,
+            org.aopalliance.aop;resolution:=optional,
+            org.aopalliance.intercept;resolution:=optional,
+            org.apache.commons.collections;version="[3,4)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.velocity;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.app;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.context;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.exception;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime.log;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime.resource;version="[1.7,2)";resolution:=optional,
+            org.apache.velocity.runtime.resource.loader;version="[1.7,2)";resolution:=optional,
+            org.quartz;version="[2,3)";resolution:=optional,
+            org.quartz.impl;version="[2,3)";resolution:=optional,
+            org.quartz.impl.jdbcjobstore;version="[2,3)";resolution:=optional,
+            org.quartz.impl.triggers;version="[2,3)";resolution:=optional,
+            org.quartz.simpl;version="[2,3)";resolution:=optional,
+            org.quartz.spi;version="[2,3)";resolution:=optional,
+            org.quartz.utils;version="[2,3)";resolution:=optional,
+            org.quartz.xml;version="[2,3)";resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.cache.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},5.1)",
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.context.expression;version="[${pkgVersion},5.1)",
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.io;version="[${pkgVersion},5.1)",
+            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.jdbc.datasource;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jdbc.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.scheduling.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)"
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/mime.types</include>
+                                    </includes>
+                                </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/899ecb96/spring-context-support-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-context-support-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-context-support-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..f77670e
--- /dev/null
+++ b/spring-context-support-5.0.7.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 Context Support 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/899ecb96/spring-core-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-core-5.0.6.RELEASE/pom.xml b/spring-core-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 136be5b..0000000
--- a/spring-core-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,149 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-core</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.net;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.bind;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            javax.xml.stream;resolution:=optional,
-            javax.xml.stream.events;resolution:=optional,
-            javax.xml.stream.util;resolution:=optional,
-            javax.xml.transform;resolution:=optional,
-            javax.xml.transform.sax;resolution:=optional,
-            javax.xml.transform.stax;resolution:=optional,
-            joptsimple;version="[4,5)";resolution:=optional,
-            net.sf.cglib.beans;version="[3,4)";resolution:=optional,
-            sun.misc;resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.commons.codec.binary;resolution:=optional,
-            org.apache.log4j;version="[1.2.15,2)";resolution:=optional,
-            org.apache.log4j.xml;version="[1.2.15,2)";resolution:=optional,
-            org.apache.tools.ant;version="[1.7,2)";resolution:=optional,
-            org.apache.tools.ant.types;version="[1.7,2)";resolution:=optional,
-            org.aspectj.bridge;version="[1.8,2)";resolution:=optional,
-            org.aspectj.weaver;version="[1.8,2)";resolution:=optional,
-            org.aspectj.weaver.bcel;version="[1.8,2)";resolution:=optional,
-            org.aspectj.weaver.patterns;version="[1.8,2)";resolution:=optional,
-            org.eclipse.core.runtime;common="split";resolution:=optional,
-            org.jboss.vfs;version="[3,4)";resolution:=optional,
-            org.jboss.virtual;version="[2.1.0.GA,3)";resolution:=optional,
-            org.objectweb.asm;version="[3.2,4)";resolution:=optional,
-            org.springframework.asm.tree;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.asm.util;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional,
-            org.xml.sax.ext;resolution:=optional,
-            org.xml.sax.helpers;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>commons-logging</groupId>
-                    <artifactId>commons-logging</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>commons-logging</groupId>
-                    <artifactId>commons-logging</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/899ecb96/spring-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8a19b86..0000000
--- a/spring-core-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework 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/899ecb96/spring-core-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-core-5.0.7.RELEASE/pom.xml b/spring-core-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..c4ae605
--- /dev/null
+++ b/spring-core-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,148 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-core</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-core</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.net;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.bind;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            javax.xml.stream;resolution:=optional,
+            javax.xml.stream.events;resolution:=optional,
+            javax.xml.stream.util;resolution:=optional,
+            javax.xml.transform;resolution:=optional,
+            javax.xml.transform.sax;resolution:=optional,
+            javax.xml.transform.stax;resolution:=optional,
+            joptsimple;version="[4,5)";resolution:=optional,
+            net.sf.cglib.beans;version="[3,4)";resolution:=optional,
+            sun.misc;resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.commons.codec.binary;resolution:=optional,
+            org.apache.log4j;version="[1.2.15,2)";resolution:=optional,
+            org.apache.log4j.xml;version="[1.2.15,2)";resolution:=optional,
+            org.apache.tools.ant;version="[1.7,2)";resolution:=optional,
+            org.apache.tools.ant.types;version="[1.7,2)";resolution:=optional,
+            org.aspectj.bridge;version="[1.8,2)";resolution:=optional,
+            org.aspectj.weaver;version="[1.8,2)";resolution:=optional,
+            org.aspectj.weaver.bcel;version="[1.8,2)";resolution:=optional,
+            org.aspectj.weaver.patterns;version="[1.8,2)";resolution:=optional,
+            org.eclipse.core.runtime;common="split";resolution:=optional,
+            org.jboss.vfs;version="[3,4)";resolution:=optional,
+            org.jboss.virtual;version="[2.1.0.GA,3)";resolution:=optional,
+            org.objectweb.asm;version="[3.2,4)";resolution:=optional,
+            org.springframework.asm.tree;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.asm.util;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional,
+            org.xml.sax.ext;resolution:=optional,
+            org.xml.sax.helpers;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/899ecb96/spring-core-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-core-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-core-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..8a19b86
--- /dev/null
+++ b/spring-core-5.0.7.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 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/899ecb96/spring-expression-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-expression-5.0.6.RELEASE/pom.xml b/spring-expression-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index a89afb8..0000000
--- a/spring-expression-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,123 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-expression</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-expression</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional, 
-            org.springframework.asm;version="[${pkgVersion},5.1)",
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert;version="[${pkgVersion},5.1)",
-            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.style;version="[${pkgVersion},5.1)",
-            org.springframework.util;version="[${pkgVersion},5.1)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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/899ecb96/spring-expression-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-expression-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-expression-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index d0e4058..0000000
--- a/spring-expression-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Expression 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/899ecb96/spring-expression-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-expression-5.0.7.RELEASE/pom.xml b/spring-expression-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..1b3ea25
--- /dev/null
+++ b/spring-expression-5.0.7.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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-expression</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-expression</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional, 
+            org.springframework.asm;version="[${pkgVersion},5.1)",
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert;version="[${pkgVersion},5.1)",
+            org.springframework.core.convert.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.style;version="[${pkgVersion},5.1)",
+            org.springframework.util;version="[${pkgVersion},5.1)"
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/899ecb96/spring-expression-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-expression-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-expression-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..d0e4058
--- /dev/null
+++ b/spring-expression-5.0.7.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 Expression 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/899ecb96/spring-instrument-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-instrument-5.0.6.RELEASE/pom.xml b/spring-instrument-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 8bb34e7..0000000
--- a/spring-instrument-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,116 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-instrument</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-instrument</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-
-        </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>
-                            <transformers>
-				<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-				    <manifestEntries>
-                                         <Premain-Class>org.springframework.instrument.InstrumentationSavingAgent</Premain-Class>
-                                         <Agent-Class>org.springframework.instrument.InstrumentationSavingAgent</Agent-Class>
-                                         <Can-Redefine-Classes>true</Can-Redefine-Classes>
-                                         <Can-Retransform-Classes>true</Can-Retransform-Classes>
-                                         <Can-Set-Native-Method-Prefix>false</Can-Set-Native-Method-Prefix>
-				    </manifestEntries>
-				</transformer>
-			    </transformers>
-                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
-                            <createDependencyReducedPom>true</createDependencyReducedPom>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-instrument-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-instrument-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-instrument-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8e80695..0000000
--- a/spring-instrument-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Instrument 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/899ecb96/spring-instrument-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-instrument-5.0.7.RELEASE/pom.xml b/spring-instrument-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..fe9e300
--- /dev/null
+++ b/spring-instrument-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,115 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-instrument</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-instrument</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+
+        </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>
+                            <transformers>
+				<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+				    <manifestEntries>
+                                         <Premain-Class>org.springframework.instrument.InstrumentationSavingAgent</Premain-Class>
+                                         <Agent-Class>org.springframework.instrument.InstrumentationSavingAgent</Agent-Class>
+                                         <Can-Redefine-Classes>true</Can-Redefine-Classes>
+                                         <Can-Retransform-Classes>true</Can-Retransform-Classes>
+                                         <Can-Set-Native-Method-Prefix>false</Can-Set-Native-Method-Prefix>
+				    </manifestEntries>
+				</transformer>
+			    </transformers>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-instrument-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-instrument-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-instrument-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..8e80695
--- /dev/null
+++ b/spring-instrument-5.0.7.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 Instrument module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m


[10/17] servicemix-bundles git commit: [SM-3745] Create OSGi bundles for Spring 5.0.7.RELEASE

Posted by ac...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/899ecb96/spring-orm-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-orm-5.0.7.RELEASE/pom.xml b/spring-orm-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..1038e86
--- /dev/null
+++ b/spring-orm-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,260 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-orm</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-orm</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.ibatis.common.xml;resolution:=optional,
+            com.ibatis.sqlmap.client;resolution:=optional,
+            com.ibatis.sqlmap.client.event;resolution:=optional,
+            com.ibatis.sqlmap.engine.builder.xml;resolution:=optional,
+            com.ibatis.sqlmap.engine.impl;resolution:=optional,
+            com.ibatis.sqlmap.engine.transaction;resolution:=optional,
+            com.ibatis.sqlmap.engine.transaction.external;resolution:=optional,
+            com.ibatis.sqlmap.engine.type;resolution:=optional,
+            javax.jdo;resolution:=optional,
+            javax.jdo.datastore;resolution:=optional,
+            javax.persistence;resolution:=optional,
+            javax.persistence.criteria;resolution:=optional,
+            javax.persistence.metamodel;resolution:=optional,
+            javax.persistence.spi;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.sql;resolution:=optional,
+            javax.transaction;resolution:=optional,
+            javax.xml.parsers;resolution:=optional,
+            oracle.toplink.essentials.ejb.cmp3;resolution:=optional,
+            oracle.toplink.essentials.expressions;resolution:=optional,
+            oracle.toplink.essentials.internal.databaseaccess;resolution:=optional,
+            oracle.toplink.essentials.internal.sessions;resolution:=optional,
+            oracle.toplink.essentials.sessions;resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)",
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.openjpa.persistence;version="[2,3)";resolution:=optional,
+            org.apache.openjpa.persistence.jdbc;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.config;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.internal.databaseaccess;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.internal.sessions;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.jpa;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.logging;version="[2,3)";resolution:=optional,
+            org.eclipse.persistence.sessions;version="[2,3)";resolution:=optional,
+            org.hibernate;version="[3,6)";resolution:=optional,
+            org.hibernate.annotations;version="[3,6)";resolution:=optional,
+            org.hibernate.boot;version="[3,6)";resolution:=optional,
+            org.hibernate.boot.model.naming;version="[3,6)";resolution:=optional,
+            org.hibernate.boot.registry;version="[3,6)";resolution:=optional,
+            org.hibernate.cache;version="[3,6)";resolution:=optional,
+            org.hibernate.cache.access;version="[3,6)";resolution:=optional,
+            org.hibernate.cache.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.cfg;version="[3,6)";resolution:=optional,
+            org.hibernate.classic;version="[3,6)";resolution:=optional,
+            org.hibernate.connection;version="[3,6)";resolution:=optional,
+            org.hibernate.context;version="[3,6)";resolution:=optional,
+            org.hibernate.context.internal;version="[3,6)";resolution:=optional,
+            org.hibernate.context.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.criterion;version="[3,6)";resolution:=optional,
+            org.hibernate.dialect;version="[3,6)";resolution:=optional,
+            org.hibernate.dialect.lock;version="[3,6)";resolution:=optional,
+            org.hibernate.ejb;version="[3,6)";resolution:=optional,
+            org.hibernate.engine;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.jdbc.connections.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.jdbc.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.transaction.internal.jta;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.transaction.jta.platform.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.engine.transaction.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.event;version="[3,6)";resolution:=optional,
+            org.hibernate.event.def;version="[3,6)";resolution:=optional,
+            org.hibernate.exception;version="[3,6)";resolution:=optional,
+            org.hibernate.impl;version="[3,6)";resolution:=optional,
+            org.hibernate.jdbc;version="[3,6)";resolution:=optional,
+            org.hibernate.jpa;version="[3,6)";resolution:=optional,
+            org.hibernate.jpa.boot.internal;version="[3,6)";resolution:=optional,
+            org.hibernate.jpa.boot.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.persister.entity;version="[3,6)";resolution:=optional,
+            org.hibernate.query;version="[3,6)";resolution:=optional,
+            org.hibernate.resource.transaction.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.resource.jdbc.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.service;version="[3,6)";resolution:=optional,
+            org.hibernate.service.jdbc.connections.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.service.jta.platform.internal;version="[3,6)";resolution:=optional,
+            org.hibernate.service.jta.platform.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.service.spi;version="[3,6)";resolution:=optional,
+            org.hibernate.tool.hbm2ddl;version="[3,6)";resolution:=optional,
+            org.hibernate.transaction;version="[3,6)";resolution:=optional,
+            org.hibernate.transform;version="[3,6)";resolution:=optional,
+            org.hibernate.type;version="[3,6)";resolution:=optional,
+            org.hibernate.usertype;version="[3,6)";resolution:=optional,
+            org.hibernate.util;version="[3,6)";resolution:=optional,
+            org.springframework.aop.scope;version="[${pkgVersion},5.1)",
+            org.springframework.aop.support;version="[${pkgVersion},5.1)",
+            org.springframework.beans;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
+            org.springframework.context;version="[${pkgVersion},5.1)",
+            org.springframework.context.weaving;version="[${pkgVersion},5.1)",
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.io;version="[${pkgVersion},5.1)",
+            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.core.type;version="[${pkgVersion},5.1)",
+            org.springframework.core.type.classreading;version="[${pkgVersion},5.1)",
+            org.springframework.core.type.filter;version="[${pkgVersion},5.1)",
+            org.springframework.dao;version="[${pkgVersion},5.1)",
+            org.springframework.dao.support;version="[${pkgVersion},5.1)",
+            org.springframework.instrument;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.instrument.classloading;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jdbc;version="[${pkgVersion},5.1)",
+            org.springframework.jdbc.datasource;version="[${pkgVersion},5.1)",
+            org.springframework.jdbc.datasource.lookup;version="[${pkgVersion},5.1)",
+            org.springframework.jdbc.support;version="[${pkgVersion},5.1)",
+            org.springframework.jdbc.support.lob;version="[${pkgVersion},5.1)",
+            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},5.1)",
+            org.springframework.transaction.jta;version="[${pkgVersion},5.1)",
+            org.springframework.transaction.support;version="[${pkgVersion},5.1)",
+            org.springframework.ui;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util.xml;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.request;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.request.async;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.filter;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-jdbc</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-jdbc</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-tx</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/899ecb96/spring-orm-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-orm-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-orm-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..dad88ba
--- /dev/null
+++ b/spring-orm-5.0.7.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 ORM 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/899ecb96/spring-oxm-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-oxm-5.0.6.RELEASE/pom.xml b/spring-oxm-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 2b2dbce..0000000
--- a/spring-oxm-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,174 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-oxm</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-oxm</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.thoughtworks.xstream;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.converters;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.converters.reflection;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.core;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.core.util;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.io;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.io.naming;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.io.xml;version="[1.4,2)";resolution:=optional,
-            com.thoughtworks.xstream.mapper;version="[1.4,2)";resolution:=optional,
-            javax.activation;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.bind;resolution:=optional,
-            javax.xml.bind.annotation;resolution:=optional,
-            javax.xml.bind.annotation.adapters;resolution:=optional,
-            javax.xml.bind.attachment;resolution:=optional,
-            javax.xml.datatype,
-            javax.xml.namespace,
-            javax.xml.parsers,
-            javax.xml.stream,
-            javax.xml.transform,
-            javax.xml.transform.dom,
-            javax.xml.transform.sax,
-            javax.xml.transform.stream,
-            javax.xml.validation,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.xmlbeans;version="[2.6,3)";resolution:=optional,
-            org.exolab.castor.mapping;version="[1.3,2)";resolution:=optional,
-            org.exolab.castor.xml;version="[1.3,2)";resolution:=optional,
-            org.exolab.castor.util;version="[1.3,2)";resolution:=optional,
-            org.jibx.runtime;version="[1.2,2)";resolution:=optional,
-            org.jibx.runtime.impl;version="[1.2,2)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.io;version="[${pkgVersion},5.1)",
-            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
-            org.springframework.core.type;version="[${pkgVersion},5.1)",
-            org.springframework.core.type.classreading;version="[${pkgVersion},5.1)",
-            org.springframework.core.type.filter;version="[${pkgVersion},5.1)",
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.xml;version="[${pkgVersion},5.1)",
-            org.w3c.dom,
-            org.w3c.dom.ls,
-            org.xml.sax,
-            org.xml.sax.ext,
-            org.xml.sax.helpers
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-oxm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-oxm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-oxm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9e728ad..0000000
--- a/spring-oxm-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework OXM 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/899ecb96/spring-oxm-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-oxm-5.0.7.RELEASE/pom.xml b/spring-oxm-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..1ea58e2
--- /dev/null
+++ b/spring-oxm-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,173 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-oxm</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-oxm</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.thoughtworks.xstream;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.converters;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.converters.reflection;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.core;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.core.util;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.io;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.io.naming;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.io.xml;version="[1.4,2)";resolution:=optional,
+            com.thoughtworks.xstream.mapper;version="[1.4,2)";resolution:=optional,
+            javax.activation;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.bind;resolution:=optional,
+            javax.xml.bind.annotation;resolution:=optional,
+            javax.xml.bind.annotation.adapters;resolution:=optional,
+            javax.xml.bind.attachment;resolution:=optional,
+            javax.xml.datatype,
+            javax.xml.namespace,
+            javax.xml.parsers,
+            javax.xml.stream,
+            javax.xml.transform,
+            javax.xml.transform.dom,
+            javax.xml.transform.sax,
+            javax.xml.transform.stream,
+            javax.xml.validation,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.xmlbeans;version="[2.6,3)";resolution:=optional,
+            org.exolab.castor.mapping;version="[1.3,2)";resolution:=optional,
+            org.exolab.castor.xml;version="[1.3,2)";resolution:=optional,
+            org.exolab.castor.util;version="[1.3,2)";resolution:=optional,
+            org.jibx.runtime;version="[1.2,2)";resolution:=optional,
+            org.jibx.runtime.impl;version="[1.2,2)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.io;version="[${pkgVersion},5.1)",
+            org.springframework.core.io.support;version="[${pkgVersion},5.1)",
+            org.springframework.core.type;version="[${pkgVersion},5.1)",
+            org.springframework.core.type.classreading;version="[${pkgVersion},5.1)",
+            org.springframework.core.type.filter;version="[${pkgVersion},5.1)",
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.xml;version="[${pkgVersion},5.1)",
+            org.w3c.dom,
+            org.w3c.dom.ls,
+            org.xml.sax,
+            org.xml.sax.ext,
+            org.xml.sax.helpers
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-oxm-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-oxm-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-oxm-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9e728ad
--- /dev/null
+++ b/spring-oxm-5.0.7.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 OXM 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/899ecb96/spring-test-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-test-5.0.6.RELEASE/pom.xml b/spring-test-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 9342b33..0000000
--- a/spring-test-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,226 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-test</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-test</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.jayway.jsonpath;version="[1,3)";resolution:=optional,
-            com.gargoylesoftware.htmlunit;resolution:=optional,
-            com.gargoylesoftware.htmlunit.util;resolution:=optional,
-            javax.activation;resolution:=optional,
-            javax.el;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.naming.spi;resolution:=optional,
-            javax.persistence;resolution:=optional,
-            javax.portlet;resolution:=optional,
-            javax.servlet;resolution:=optional,
-            javax.servlet.descriptor;resolution:=optional,
-            javax.servlet.http;resolution:=optional,
-            javax.servlet.jsp;resolution:=optional,
-            javax.servlet.jsp.el;resolution:=optional,
-            javax.servlet.jsp.tagext;resolution:=optional,
-            javax.sql;resolution:=optional,
-            javax.xml;resolution:=optional,
-            javax.xml.namespace;resolution:=optional,
-            javax.xml.parsers;resolution:=optional,
-            javax.xml.transform,
-            javax.xml.transform.dom,
-            javax.xml.xpath;resolution:=optional,
-            javax.websocket;resolution:=optional, 
-            javax.websocket.server;resolution:=optional, 
-            junit.framework;version="[4,5)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.apache.http.cookie;resolution:=optional,
-            org.apache.http.impl.cookie;resolution:=optional,
-            org.apache.taglibs.standard.lang.support;version="[1.2,2)";resolution:=optional,
-            org.aspectj.weaver.loadtime;version="[1.8,2)";resolution:=optional,
-            org.custommonkey.xmlunit;version="[1.5,2)";resolution:=optional,
-            org.hamcrest;version="[1,2)";resolution:=optional,
-            org.hamcrest.core;version="[1,2)";resolution:=optional,
-            org.junit;version="[4,5)";resolution:=optional,
-            org.junit.internal;version="[4,5)";resolution:=optional,
-            org.junit.internal.runners.model;version="[4,5)";resolution:=optional,
-            org.junit.internal.runners.statements;version="[4,5)";resolution:=optional,
-            org.junit.rules;version="[4,5)";resolution:=optional,
-            org.junit.runner;version="[4,5)";resolution:=optional,
-            org.junit.runner.notification;version="[4,5)";resolution:=optional,
-            org.junit.runners;version="[4,5)";resolution:=optional,
-            org.junit.runners.model;version="[4,5)";resolution:=optional,
-            org.openqa.selenium;version="[2,4)";resolution:=optional,
-            org.openqa.selenium.htmlunit;version="[2,4)";resolution:=optional,
-            org.skyscreamer.jsonassert;resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.groovy;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.env;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.io;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.io.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core.style;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.dao;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http.client;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.http.converter;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.instrument.classloading;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jdbc.core;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jdbc.core.simple;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jdbc.datasource.init;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.orm.jpa;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.orm.jpa.persistenceunit;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.transaction.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.ui;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util.xml;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.validation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.accept;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.bind.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.client;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.client.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.request;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.request.async;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.method;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.method.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.multipart;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.portlet.multipart;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.config.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.handler;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.i18n;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.mvc.method.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.theme;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.servlet.view;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.web.util;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.testng;resolution:=optional,
-            org.testng.annotations;resolution:=optional,
-            org.w3c.dom;resolution:=optional,
-            org.xml.sax;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>META-INF/spring.*</include>
-                                    </includes>
-                                </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/899ecb96/spring-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9e7342b..0000000
--- a/spring-test-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Test 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/899ecb96/spring-test-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-test-5.0.7.RELEASE/pom.xml b/spring-test-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..0d1f78f
--- /dev/null
+++ b/spring-test-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,225 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-test</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-test</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.jayway.jsonpath;version="[1,3)";resolution:=optional,
+            com.gargoylesoftware.htmlunit;resolution:=optional,
+            com.gargoylesoftware.htmlunit.util;resolution:=optional,
+            javax.activation;resolution:=optional,
+            javax.el;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.naming.spi;resolution:=optional,
+            javax.persistence;resolution:=optional,
+            javax.portlet;resolution:=optional,
+            javax.servlet;resolution:=optional,
+            javax.servlet.descriptor;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            javax.servlet.jsp;resolution:=optional,
+            javax.servlet.jsp.el;resolution:=optional,
+            javax.servlet.jsp.tagext;resolution:=optional,
+            javax.sql;resolution:=optional,
+            javax.xml;resolution:=optional,
+            javax.xml.namespace;resolution:=optional,
+            javax.xml.parsers;resolution:=optional,
+            javax.xml.transform,
+            javax.xml.transform.dom,
+            javax.xml.xpath;resolution:=optional,
+            javax.websocket;resolution:=optional, 
+            javax.websocket.server;resolution:=optional, 
+            junit.framework;version="[4,5)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.apache.http.cookie;resolution:=optional,
+            org.apache.http.impl.cookie;resolution:=optional,
+            org.apache.taglibs.standard.lang.support;version="[1.2,2)";resolution:=optional,
+            org.aspectj.weaver.loadtime;version="[1.8,2)";resolution:=optional,
+            org.custommonkey.xmlunit;version="[1.5,2)";resolution:=optional,
+            org.hamcrest;version="[1,2)";resolution:=optional,
+            org.hamcrest.core;version="[1,2)";resolution:=optional,
+            org.junit;version="[4,5)";resolution:=optional,
+            org.junit.internal;version="[4,5)";resolution:=optional,
+            org.junit.internal.runners.model;version="[4,5)";resolution:=optional,
+            org.junit.internal.runners.statements;version="[4,5)";resolution:=optional,
+            org.junit.rules;version="[4,5)";resolution:=optional,
+            org.junit.runner;version="[4,5)";resolution:=optional,
+            org.junit.runner.notification;version="[4,5)";resolution:=optional,
+            org.junit.runners;version="[4,5)";resolution:=optional,
+            org.junit.runners.model;version="[4,5)";resolution:=optional,
+            org.openqa.selenium;version="[2,4)";resolution:=optional,
+            org.openqa.selenium.htmlunit;version="[2,4)";resolution:=optional,
+            org.skyscreamer.jsonassert;resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.groovy;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.env;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.io;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.io.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core.style;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.dao;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.format.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http.client;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.http.converter;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.instrument.classloading;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jdbc.core;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jdbc.core.simple;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jdbc.datasource.init;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.jndi;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.orm.jpa;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.orm.jpa.persistenceunit;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.interceptor;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.transaction.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.ui;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util.xml;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.validation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.accept;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.bind.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.client;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.client.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.request;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.request.async;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.method;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.method.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.multipart;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.portlet.multipart;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.config.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.handler;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.i18n;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.mvc.method.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.theme;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.servlet.view;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.web.util;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.testng;resolution:=optional,
+            org.testng.annotations;resolution:=optional,
+            org.w3c.dom;resolution:=optional,
+            org.xml.sax;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>META-INF/spring.*</include>
+                                    </includes>
+                                </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/899ecb96/spring-test-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-test-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-test-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..9e7342b
--- /dev/null
+++ b/spring-test-5.0.7.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 Test 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/899ecb96/spring-tx-5.0.6.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-tx-5.0.6.RELEASE/pom.xml b/spring-tx-5.0.6.RELEASE/pom.xml
deleted file mode 100644
index 414baec..0000000
--- a/spring-tx-5.0.6.RELEASE/pom.xml
+++ /dev/null
@@ -1,175 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.spring-tx</artifactId>
-    <version>5.0.6.RELEASE_2-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</pkgGroupId>
-        <pkgArtifactId>spring-tx</pkgArtifactId>
-        <pkgVersion>5.0.6.RELEASE</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.springframework
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.ibm.websphere.uow;resolution:=optional,
-            com.ibm.wsspi.uow;resolution:=optional,
-            javax.ejb;resolution:=optional,
-            javax.management;resolution:=optional,
-            javax.naming;resolution:=optional,
-            javax.resource;resolution:=optional,
-            javax.resource.cci;resolution:=optional,
-            javax.resource.spi;resolution:=optional,
-            javax.resource.spi.endpoint;resolution:=optional,
-            javax.resource.spi.work;resolution:=optional,
-            javax.transaction;version="[1.2,2)";resolution:=optional,
-            javax.transaction.xa;version="[1.2,2)";resolution:=optional,
-            org.aopalliance.aop;version="[1,2)";resolution:=optional,
-            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
-            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
-            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.config;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.scope;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.aop.support.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.beans;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)",            
-            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
-            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
-            org.springframework.beans.propertyeditors;version="[${pkgVersion},5.1)",
-            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.core;version="[${pkgVersion},5.1)",
-            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
-            org.springframework.core.env;version="[${pkgVersion},5.1)",
-            org.springframework.core.task;version="[${pkgVersion},5.1)",
-            org.springframework.core.type;version="[${pkgVersion},5.1)",
-            org.springframework.jndi;version="[${pkgVersion},5.1)",
-            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
-            org.springframework.util;version="[${pkgVersion},5.1)",
-            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
-            org.springframework.util.xml;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.core;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)",
-            org.springframework.cglib.reflect;version="[${pkgVersion},5.1)",
-            org.w3c.dom;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-beans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-core</artifactId>
-                </exclusion>
-            </exclusions>
-        </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>
-                                    <includes>
-                                        <include>**/*.gif</include>
-                                        <include>**/*.xsd</include>
-                                        <include>META-INF/spring*</include>
-                                    </includes>
-                                </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/899ecb96/spring-tx-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-tx-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-tx-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 935d8fd..0000000
--- a/spring-tx-5.0.6.RELEASE/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,11 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Spring Framework Transaction (TX) 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/899ecb96/spring-tx-5.0.7.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-tx-5.0.7.RELEASE/pom.xml b/spring-tx-5.0.7.RELEASE/pom.xml
new file mode 100644
index 0000000..12b5114
--- /dev/null
+++ b/spring-tx-5.0.7.RELEASE/pom.xml
@@ -0,0 +1,174 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.spring-tx</artifactId>
+    <version>5.0.7.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>
+  </scm>
+
+    <properties>
+        <pkgGroupId>org.springframework</pkgGroupId>
+        <pkgArtifactId>spring-tx</pkgArtifactId>
+        <pkgVersion>5.0.7.RELEASE</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.springframework
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.ibm.websphere.uow;resolution:=optional,
+            com.ibm.wsspi.uow;resolution:=optional,
+            javax.ejb;resolution:=optional,
+            javax.management;resolution:=optional,
+            javax.naming;resolution:=optional,
+            javax.resource;resolution:=optional,
+            javax.resource.cci;resolution:=optional,
+            javax.resource.spi;resolution:=optional,
+            javax.resource.spi.endpoint;resolution:=optional,
+            javax.resource.spi.work;resolution:=optional,
+            javax.transaction;version="[1.2,2)";resolution:=optional,
+            javax.transaction.xa;version="[1.2,2)";resolution:=optional,
+            org.aopalliance.aop;version="[1,2)";resolution:=optional,
+            org.aopalliance.intercept;version="[1,2)";resolution:=optional,
+            org.apache.commons.logging;version="[1.1.1,2)";resolution:=optional,
+            org.springframework.aop;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.config;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.framework.autoproxy;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.scope;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.aop.support.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.beans;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.config;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.parsing;version="[${pkgVersion},5.1)",            
+            org.springframework.beans.factory.support;version="[${pkgVersion},5.1)",
+            org.springframework.beans.factory.xml;version="[${pkgVersion},5.1)",
+            org.springframework.beans.propertyeditors;version="[${pkgVersion},5.1)",
+            org.springframework.context;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.annotation;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.event;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.context.support;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.core;version="[${pkgVersion},5.1)",
+            org.springframework.core.annotation;version="[${pkgVersion},5.1)",
+            org.springframework.core.env;version="[${pkgVersion},5.1)",
+            org.springframework.core.task;version="[${pkgVersion},5.1)",
+            org.springframework.core.type;version="[${pkgVersion},5.1)",
+            org.springframework.jndi;version="[${pkgVersion},5.1)",
+            org.springframework.scheduling;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.stereotype;version="[${pkgVersion},5.1)";resolution:=optional,
+            org.springframework.util;version="[${pkgVersion},5.1)",
+            org.springframework.util.concurrent;version="[${pkgVersion},5.1)",
+            org.springframework.util.xml;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.core;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.proxy;version="[${pkgVersion},5.1)",
+            org.springframework.cglib.reflect;version="[${pkgVersion},5.1)",
+            org.w3c.dom;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-beans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </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>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
+                                </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/899ecb96/spring-tx-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/spring-tx-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-tx-5.0.7.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..935d8fd
--- /dev/null
+++ b/spring-tx-5.0.7.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 Transaction (TX) module.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.springsource.org/spring-framework\u001B[0m