You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2018/01/30 09:23:31 UTC

[1/3] servicemix-bundles git commit: [SM-3597] Ship elasticsearch nett4 transport plugin in elasticsearch 6.x bundle

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master c14c1996e -> f6951ac29


[SM-3597] Ship elasticsearch nett4 transport plugin in elasticsearch 6.x bundle


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

Branch: refs/heads/master
Commit: 5f49ac9c916fee97937333ed8676f237d52b1621
Parents: c14c199
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Tue Jan 30 10:20:54 2018 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Tue Jan 30 10:20:54 2018 +0100

----------------------------------------------------------------------
 elasticsearch-6.1.1/pom.xml                     | 42 ++++++++++++++++----
 .../META-INF/org.apache.lucene.codecs.Codec     |  3 ++
 .../org.apache.lucene.codecs.DocValuesFormat    |  2 +
 .../org.apache.lucene.codecs.PostingsFormat     |  1 +
 pom.xml                                         |  1 +
 5 files changed, 42 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5f49ac9c/elasticsearch-6.1.1/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-6.1.1/pom.xml b/elasticsearch-6.1.1/pom.xml
index dec4e54..9b7ef65 100644
--- a/elasticsearch-6.1.1/pom.xml
+++ b/elasticsearch-6.1.1/pom.xml
@@ -51,20 +51,26 @@
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
             com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
+            com.fasterxml.jackson.core;version="[2.8,3)",
+            com.fasterxml.jackson.dataformat.yaml;version="[2.8,3)",
+            com.fasterxml.jackson.dataformat.smile;version="[2.8,3)",
             com.sun.jna;resolution:=optional,
             com.ning.compress.lzf.util,
-            *;resolution:=optional
+            org.apache.logging.log4j*;version="[2.8,3)",
+            *
         </servicemix.osgi.import.pkg>
         <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
+            org.joda.time*,
+            org.joda.convert*,
+            org.apache.lucene*,
             org.tartarus.snowball*,
             com.tdunning.math.stats,
+            com.vividsolutions.jts.geom,
             com.carrotsearch.hppc*,
-            META-INF.services.*;-split-package:=merge-first
+            joptsimple*,
+            org.HdrHistogram,
+            org.locationtech.spatial4j*,
+            META-INF.services.*
         </servicemix.osgi.private.pkg>
     </properties>
 
@@ -74,6 +80,21 @@
             <artifactId>${pkgArtifactId}</artifactId>
             <version>${pkgVersion}</version>
         </dependency>
+        <dependency>
+            <groupId>org.elasticsearch.plugin</groupId>
+            <artifactId>transport-netty4-client</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+             <groupId>org.apache.logging.log4j</groupId>
+             <artifactId>log4j-core</artifactId>
+             <version>2.9.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.lucene</groupId>
+            <artifactId>lucene-backward-codecs</artifactId>
+            <version>7.1.0</version>
+        </dependency>
 
         <!-- sources -->
         <dependency>
@@ -82,6 +103,12 @@
             <version>${pkgVersion}</version>
             <classifier>sources</classifier>
         </dependency>
+        <dependency>
+            <groupId>org.elasticsearch.plugin</groupId>
+            <artifactId>transport-netty4-client</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </dependency>
     </dependencies>
 
     <build>
@@ -99,6 +126,7 @@
                             <artifactSet>
                                 <includes>
                                     <include>${pkgGroupId}:${pkgArtifactId}</include>
+				    <include>org.elasticsearch.plugin:transport-netty4client</include>
                                     <include>org.apache.lucene:*</include>
                                 </includes>
                             </artifactSet>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5f49ac9c/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.Codec
----------------------------------------------------------------------
diff --git a/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.Codec b/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.Codec
new file mode 100644
index 0000000..087c825
--- /dev/null
+++ b/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.Codec
@@ -0,0 +1,3 @@
+org.apache.lucene.codecs.lucene60.Lucene60Codec
+org.apache.lucene.codecs.lucene62.Lucene62Codec
+org.apache.lucene.codecs.lucene70.Lucene70Codec

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5f49ac9c/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.DocValuesFormat
----------------------------------------------------------------------
diff --git a/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.DocValuesFormat b/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.DocValuesFormat
new file mode 100644
index 0000000..b069eb6
--- /dev/null
+++ b/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.DocValuesFormat
@@ -0,0 +1,2 @@
+org.apache.lucene.codecs.lucene54.Lucene54DocValuesFormat
+org.apache.lucene.codecs.lucene70.Lucene70DocValuesFormat

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5f49ac9c/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.PostingsFormat
----------------------------------------------------------------------
diff --git a/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.PostingsFormat b/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.PostingsFormat
new file mode 100644
index 0000000..3b5682a
--- /dev/null
+++ b/elasticsearch-6.1.1/src/main/resources/META-INF/org.apache.lucene.codecs.PostingsFormat
@@ -0,0 +1 @@
+org.apache.lucene.codecs.lucene50.Lucene50PostingsFormat

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5f49ac9c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a67c9f9..503cc34 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@
         <module>braintree-java-2.74.0</module>
         <module>fastjson-1.2.45</module>
         <module>libphonenumber-8.8.9</module>
+        <module>elasticsearch-6.1.1</module>
     </modules>
 
 </project>


[2/3] servicemix-bundles git commit: Cleanup old elasticsearch bundles

Posted by jb...@apache.org.
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-client-5.4.3/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.4.3/pom.xml b/elasticsearch-client-5.4.3/pom.xml
deleted file mode 100644
index 52ade93..0000000
--- a/elasticsearch-client-5.4.3/pom.xml
+++ /dev/null
@@ -1,144 +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.elasticsearch-client</artifactId>
-    <version>5.4.3_3-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: elasticsearch-client</name>
-    <description>This OSGi bundle wraps elasticsearch-client ${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>org.elasticsearch.client</pkgGroupId>
-        <pkgVersion>5.4.3</pkgVersion>
-        <servicemix.osgi.export>
-            org.elasticsearch.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.sniff;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.transport.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.transport;version="${pkgVersion}";-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>rest</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>sniffer</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>rest</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>sniffer</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}:rest</include>
-                                    <include>${pkgGroupId}:transport</include>
-                                    <include>${pkgGroupId}:sniffer</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:rest</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:transport</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:sniffer</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/f6951ac2/elasticsearch-client-5.4.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.4.3/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-client-5.4.3/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 633bf8b..0000000
--- a/elasticsearch-client-5.4.3/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,14 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/rest/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/transport/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/sniffer/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    This is the elasticsearch client bundle introduced in Elasticsearch 5.x.
-    It allows you to communicate with Elasticsearch instances.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-client-5.5.2/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.5.2/pom.xml b/elasticsearch-client-5.5.2/pom.xml
deleted file mode 100644
index f7b9e73..0000000
--- a/elasticsearch-client-5.5.2/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.elasticsearch-client</artifactId>
-    <version>5.5.2_3-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: elasticsearch-client</name>
-    <description>This OSGi bundle wraps elasticsearch-client ${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>org.elasticsearch.client</pkgGroupId>
-        <pkgVersion>5.5.2</pkgVersion>
-        <servicemix.osgi.export>
-            org.elasticsearch.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.sniff;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.transport.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.transport;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.support;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.node;version="${pkgVersion}";-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>rest</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>sniffer</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>rest</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>sniffer</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}:rest</include>
-                                    <include>${pkgGroupId}:transport</include>
-                                    <include>${pkgGroupId}:sniffer</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:rest</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:transport</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:sniffer</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/f6951ac2/elasticsearch-client-5.5.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.5.2/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-client-5.5.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 633bf8b..0000000
--- a/elasticsearch-client-5.5.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,14 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/rest/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/transport/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/sniffer/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    This is the elasticsearch client bundle introduced in Elasticsearch 5.x.
-    It allows you to communicate with Elasticsearch instances.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-client-5.6.3/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.6.3/pom.xml b/elasticsearch-client-5.6.3/pom.xml
deleted file mode 100644
index 3ea6426..0000000
--- a/elasticsearch-client-5.6.3/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.elasticsearch-client</artifactId>
-    <version>5.6.3_2-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: elasticsearch-client</name>
-    <description>This OSGi bundle wraps elasticsearch-client ${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>org.elasticsearch.client</pkgGroupId>
-        <pkgVersion>5.6.3</pkgVersion>
-        <servicemix.osgi.export>
-            org.elasticsearch.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.sniff;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.transport.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.transport;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.support;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.node;version="${pkgVersion}";-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client-sniffer</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-high-level-client</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client-sniffer</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-high-level-client</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</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}:elasticsearch-rest-client</include>
-                                    <include>${pkgGroupId}:elasticsearch-rest-client-sniffer</include>
-                                    <include>${pkgGroupId}:elasticsearch-rest-high-level-client</include>
-                                    <include>${pkgGroupId}:transport</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:elasticsearch-rest-client</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:elasticsearch-rest-client-sniffer</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:elasticsearch-rest-high-level-client</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:transport</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/f6951ac2/elasticsearch-client-5.6.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.6.3/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-client-5.6.3/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 633bf8b..0000000
--- a/elasticsearch-client-5.6.3/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,14 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/rest/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/transport/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/sniffer/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    This is the elasticsearch client bundle introduced in Elasticsearch 5.x.
-    It allows you to communicate with Elasticsearch instances.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-client-6.0.0/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-client-6.0.0/pom.xml b/elasticsearch-client-6.0.0/pom.xml
deleted file mode 100644
index dec3ff1..0000000
--- a/elasticsearch-client-6.0.0/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.elasticsearch-client</artifactId>
-    <version>6.0.0_2-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: elasticsearch-client</name>
-    <description>This OSGi bundle wraps elasticsearch-client ${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>org.elasticsearch.client</pkgGroupId>
-        <pkgVersion>6.0.0</pkgVersion>
-        <servicemix.osgi.export>
-            org.elasticsearch.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.sniff;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.transport.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.transport;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.support;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.node;version="${pkgVersion}";-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client-sniffer</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-high-level-client</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-client-sniffer</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>elasticsearch-rest-high-level-client</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</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}:elasticsearch-rest-client</include>
-                                    <include>${pkgGroupId}:elasticsearch-rest-client-sniffer</include>
-                                    <include>${pkgGroupId}:elasticsearch-rest-high-level-client</include>
-                                    <include>${pkgGroupId}:transport</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:elasticsearch-rest-client</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:elasticsearch-rest-client-sniffer</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:elasticsearch-rest-high-level-client</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:transport</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/f6951ac2/elasticsearch-client-6.0.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-client-6.0.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-client-6.0.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 633bf8b..0000000
--- a/elasticsearch-client-6.0.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,14 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/rest/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/transport/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/sniffer/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    This is the elasticsearch client bundle introduced in Elasticsearch 5.x.
-    It allows you to communicate with Elasticsearch instances.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m


[3/3] servicemix-bundles git commit: Cleanup old elasticsearch bundles

Posted by jb...@apache.org.
Cleanup old elasticsearch bundles


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

Branch: refs/heads/master
Commit: f6951ac29e9169c90c730cc7cb42afeb824d9915
Parents: 5f49ac9
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Tue Jan 30 10:22:59 2018 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Tue Jan 30 10:22:59 2018 +0100

----------------------------------------------------------------------
 elasticsearch-2.2.1/pom.xml                     | 132 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-2.3.5/pom.xml                     | 131 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-2.4.4/pom.xml                     | 131 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-5.1.2/pom.xml                     | 130 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-5.2.2/pom.xml                     | 130 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-5.3.2/pom.xml                     | 130 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-5.4.3/pom.xml                     | 130 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-5.5.2/pom.xml                     | 130 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-5.6.3/pom.xml                     | 132 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-6.0.0/pom.xml                     | 132 ---------------
 .../src/main/resources/OSGI-INF/bundle.info     |  17 --
 elasticsearch-client-5.3.2/pom.xml              | 144 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  14 --
 elasticsearch-client-5.4.3/pom.xml              | 144 ----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  14 --
 elasticsearch-client-5.5.2/pom.xml              | 146 -----------------
 .../src/main/resources/OSGI-INF/bundle.info     |  14 --
 elasticsearch-client-5.6.3/pom.xml              | 164 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  14 --
 elasticsearch-client-6.0.0/pom.xml              | 164 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  14 --
 30 files changed, 2310 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-2.2.1/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-2.2.1/pom.xml b/elasticsearch-2.2.1/pom.xml
deleted file mode 100644
index 271193a..0000000
--- a/elasticsearch-2.2.1/pom.xml
+++ /dev/null
@@ -1,132 +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>12</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId>
-    <version>2.2.1_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>2.2.1</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml,
-            com.fasterxml.jackson.dataformat.smile,
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            org.apache.regexp,
-            com.twitter.jsr166e,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-2.2.1/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-2.2.1/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.2.1/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-2.2.1/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-2.3.5/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-2.3.5/pom.xml b/elasticsearch-2.3.5/pom.xml
deleted file mode 100644
index 6494ab3..0000000
--- a/elasticsearch-2.3.5/pom.xml
+++ /dev/null
@@ -1,131 +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.elasticsearch</artifactId>
-    <version>2.3.5_3-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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>2.3.5</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.twitter.jsr166e,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-2.3.5/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-2.3.5/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.3.5/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-2.3.5/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-2.4.4/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-2.4.4/pom.xml b/elasticsearch-2.4.4/pom.xml
deleted file mode 100644
index 73a8045..0000000
--- a/elasticsearch-2.4.4/pom.xml
+++ /dev/null
@@ -1,131 +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.elasticsearch</artifactId>
-    <version>2.4.4_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>2.4.4</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.twitter.jsr166e,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-2.4.4/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-2.4.4/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.4.4/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-2.4.4/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-5.1.2/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-5.1.2/pom.xml b/elasticsearch-5.1.2/pom.xml
deleted file mode 100644
index e71ee0b..0000000
--- a/elasticsearch-5.1.2/pom.xml
+++ /dev/null
@@ -1,130 +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.elasticsearch</artifactId>
-    <version>5.1.2_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>5.1.2</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-5.1.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-5.1.2/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.1.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-5.1.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-5.2.2/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-5.2.2/pom.xml b/elasticsearch-5.2.2/pom.xml
deleted file mode 100644
index de08426..0000000
--- a/elasticsearch-5.2.2/pom.xml
+++ /dev/null
@@ -1,130 +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.elasticsearch</artifactId>
-    <version>5.2.2_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>5.2.2</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-5.2.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-5.2.2/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.2.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-5.2.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-5.3.2/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-5.3.2/pom.xml b/elasticsearch-5.3.2/pom.xml
deleted file mode 100644
index 983b0f6..0000000
--- a/elasticsearch-5.3.2/pom.xml
+++ /dev/null
@@ -1,130 +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.elasticsearch</artifactId>
-    <version>5.3.2_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>5.3.2</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-5.3.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-5.3.2/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.3.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-5.3.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-5.4.3/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-5.4.3/pom.xml b/elasticsearch-5.4.3/pom.xml
deleted file mode 100644
index 52a4e87..0000000
--- a/elasticsearch-5.4.3/pom.xml
+++ /dev/null
@@ -1,130 +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.elasticsearch</artifactId>
-    <version>5.4.3_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>5.4.3</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-5.4.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-5.4.3/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.4.3/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-5.4.3/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-5.5.2/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-5.5.2/pom.xml b/elasticsearch-5.5.2/pom.xml
deleted file mode 100644
index 1635557..0000000
--- a/elasticsearch-5.5.2/pom.xml
+++ /dev/null
@@ -1,130 +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.elasticsearch</artifactId>
-    <version>5.5.2_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>5.5.2</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-5.5.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-5.5.2/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.5.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-5.5.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-5.6.3/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-5.6.3/pom.xml b/elasticsearch-5.6.3/pom.xml
deleted file mode 100644
index f0ab986..0000000
--- a/elasticsearch-5.6.3/pom.xml
+++ /dev/null
@@ -1,132 +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.elasticsearch</artifactId>
-    <version>5.6.3_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>5.6.3</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.services.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                        <include>META-INF/services/**</include>
-                                        <include>plugins.txt</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-5.6.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-5.6.3/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.6.3/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-5.6.3/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-6.0.0/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-6.0.0/pom.xml b/elasticsearch-6.0.0/pom.xml
deleted file mode 100644
index 030bff8..0000000
--- a/elasticsearch-6.0.0/pom.xml
+++ /dev/null
@@ -1,132 +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.elasticsearch</artifactId>
-    <version>6.0.0_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>org.elasticsearch</pkgGroupId>
-        <pkgArtifactId>elasticsearch</pkgArtifactId>
-        <pkgVersion>6.0.0</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.elasticsearch
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            com.google.common.collect,
-            com.fasterxml.jackson.core;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)",
-            com.fasterxml.jackson.dataformat.smile;version="[2.6,3)",
-            com.sun.jna;resolution:=optional,
-            com.ning.compress.lzf.util,
-            *;resolution:=optional
-        </servicemix.osgi.import.pkg>
-        <servicemix.osgi.private.pkg>
-            org.joda.time*;-split-package:=merge-first,
-            org.apache.lucene*;-split-package:=merge-first,
-            org.tartarus.snowball*,
-            com.tdunning.math.stats,
-            com.carrotsearch.hppc*,
-            META-INF.services.*;-split-package:=merge-first
-        </servicemix.osgi.private.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>
-                                    <include>org.apache.lucene:*</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <includes>
-                                        <include>config/**</include>
-                                        <include>META-INF/services/**</include>
-                                        <include>plugins.txt</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    <artifact>org.apache.lucene:*</artifact>
-                                    <includes>
-                                        <include>META-INF/services/**</include>
-                                    </includes>
-                                </filter>
-                            </filters>
-                            <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                            </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/f6951ac2/elasticsearch-6.0.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-6.0.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-6.0.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index af11bfd..0000000
--- a/elasticsearch-6.0.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,17 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    So, we build a web site or an application and want to add search to it, and
-    then it hits us: getting search working is hard. We want our search solution
-    to be fast, we want a painless setup and a completely free search schema, we
-    want to be able to index data simply using JSON over HTTP, we want our search
-    server to be always available, we want to be able to start with one machine
-    and scale to hundreds, we want real-time search, we want simple multi-tenancy,
-    and we want a solution that is built for the cloud.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f6951ac2/elasticsearch-client-5.3.2/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.3.2/pom.xml b/elasticsearch-client-5.3.2/pom.xml
deleted file mode 100644
index 8defc41..0000000
--- a/elasticsearch-client-5.3.2/pom.xml
+++ /dev/null
@@ -1,144 +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.elasticsearch-client</artifactId>
-    <version>5.3.2_3-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: elasticsearch-client</name>
-    <description>This OSGi bundle wraps elasticsearch-client ${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>org.elasticsearch.client</pkgGroupId>
-        <pkgVersion>5.3.2</pkgVersion>
-        <servicemix.osgi.export>
-            org.elasticsearch.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.sniff;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.transport.client;version="${pkgVersion}";-split-package:=merge-first,
-            org.elasticsearch.client.transport;version="${pkgVersion}";-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>rest</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>sniffer</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>rest</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>transport</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>sniffer</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}:rest</include>
-                                    <include>${pkgGroupId}:transport</include>
-                                    <include>${pkgGroupId}:sniffer</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:rest</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:transport</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    <artifact>${pkgGroupId}:sniffer</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/f6951ac2/elasticsearch-client-5.3.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-client-5.3.2/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-client-5.3.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 633bf8b..0000000
--- a/elasticsearch-client-5.3.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,14 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/rest/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/transport/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/sniffer/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    This is the elasticsearch client bundle introduced in Elasticsearch 5.x.
-    It allows you to communicate with Elasticsearch instances.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.elasticsearch.org\u001B[0m