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

[1/5] servicemix-bundles git commit: SM-3149: Create OSGi bundle for OkHttp 3.4.2

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master b47e7fd16 -> 3bf1d8013


SM-3149: Create OSGi bundle for OkHttp 3.4.2


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

Branch: refs/heads/master
Commit: 8e5ead77c483a56e1b1cacd8aad9f45449d56ef5
Parents: b47e7fd
Author: lburgazzoli <lb...@gmail.com>
Authored: Tue Nov 8 11:14:00 2016 +0100
Committer: lburgazzoli <lb...@gmail.com>
Committed: Tue Nov 8 11:14:00 2016 +0100

----------------------------------------------------------------------
 okhttp-3.4.2/pom.xml                            | 216 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 pom.xml                                         |   1 +
 3 files changed, 228 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8e5ead77/okhttp-3.4.2/pom.xml
----------------------------------------------------------------------
diff --git a/okhttp-3.4.2/pom.xml b/okhttp-3.4.2/pom.xml
new file mode 100644
index 0000000..eba5a8b
--- /dev/null
+++ b/okhttp-3.4.2/pom.xml
@@ -0,0 +1,216 @@
+<?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.okhttp</artifactId>
+    <version>3.4.2_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <scm>
+        <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection>
+        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
+        <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url>
+      <tag>HEAD</tag>
+  </scm>
+
+    <properties>
+        <pkgGroupId>com.squareup.okhttp3</pkgGroupId>
+        <pkgArtifactId>okhttp</pkgArtifactId>
+        <pkgVersion>3.4.2</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            okhttp3
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            okio;version="[1.9.0,2)",
+            org.apache.http.*;resolution:=optional,
+            android.util.*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp-ws</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>okhttp</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp-urlconnection</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>okhttp</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp-apache</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>okhttp</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>logging-interceptor</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>okhttp</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp-ws</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp-urlconnection</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>okhttp-apache</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>logging-interceptor</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:okhttp</include>
+                                    <include>${pkgGroupId}:okhttp-ws</include>
+                                    <include>${pkgGroupId}:okhttp-urlconnection</include>
+                                    <include>${pkgGroupId}:okhttp-apache</include>
+                                    <include>${pkgGroupId}:logging-interceptor</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:okhttp</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:okhttp-ws</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:okhttp-ws</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:okhttp-urlconnection</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:okhttp-apache</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:logging-interceptor</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/8e5ead77/okhttp-3.4.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/okhttp-3.4.2/src/main/resources/OSGI-INF/bundle.info b/okhttp-3.4.2/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..b06d196
--- /dev/null
+++ b/okhttp-3.4.2/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,11 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    An HTTP & HTTP/2 client for Android and Java applications.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://square.github.io/okhttp/\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8e5ead77/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9d84416..64b665c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -84,6 +84,7 @@
         <module>bcprov-jdk15on-1.55</module>
         <module>braintree-java-2.68.0</module>
         <module>orbitz-consul-client-0.13.2</module>
+        <module>okhttp-3.4.2</module>
     </modules>
 
 </project>


[2/5] servicemix-bundles git commit: Removed released bundles

Posted by ac...@apache.org.
Removed released 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/e68bce98
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/e68bce98
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/e68bce98

Branch: refs/heads/master
Commit: e68bce98519e7845267128ddf94ce1504141e612
Parents: 8e5ead7
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Nov 8 12:53:49 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Nov 8 12:53:49 2016 +0100

----------------------------------------------------------------------
 pom.xml | 41 -----------------------------------------
 1 file changed, 41 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/e68bce98/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 64b665c..56b7946 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,47 +43,6 @@
 
     <modules>
         <!-- add modules for all bundles to released in the next batch here -->
-        <module>aws-java-sdk-1.11.37</module>
-        <module>aws-java-sdk-1.11.49</module>
-        <module>lucene-5.5.2</module>
-        <module>lucene-analyzers-common-5.5.2</module>
-        <module>lucene-queries-5.5.2</module>
-        <module>lucene-queryparser-5.5.2</module>
-        <module>lucene-sandbox-5.5.2</module>
-        <module>olingo-odata2-api-2.0.7</module>
-        <module>ognl-3.1.11</module>
-        <module>facebook4j-2.4.7</module>
-        <module>zxing-3.3.0</module>
-        <module>orbitz-consul-client-0.13.0</module>
-        <module>bazaarvoice-jolt-0.0.23</module>
-        <module>mustache-compiler-0.9.4</module>
-        <module>okio-1.11.0</module>
-        <module>kafka_2.10-0.10.1.0</module>
-        <module>kafka-clients-0.10.1.0</module>
-        <module>kafka_2.10-0.10.0.1</module>
-        <module>saxon-9.7.0-10</module>
-        <module>influxdb-java-2.4</module>
-        <module>opensaml-3.1.0</module>
-        <module>opensaml-3.1.1</module>
-        <module>opensaml-3.2.0</module>
-        <module>hbase-1.2.3</module>
-        <module>lucene-6.2.1</module>
-        <module>lucene-analyzers-common-6.2.1</module>
-        <module>lucene-queries-6.2.1</module>
-        <module>lucene-queryparser-6.2.1</module>
-        <module>lucene-sandbox-6.2.1</module>
-        <module>solr-solrj-6.2.1</module>
-        <module>docker-java-3.0.6</module>
-        <module>ognl-3.1.12</module>
-        <module>hystrix-1.5.6</module>
-        <module>hystrix-event-stream-1.5.6</module>
-        <module>poi-3.15</module>
-        <module>gae-1.9.44</module>
-        <module>json4s-3.4.2</module>
-        <module>facebook4j-2.4.8</module>
-        <module>bcprov-jdk15on-1.55</module>
-        <module>braintree-java-2.68.0</module>
-        <module>orbitz-consul-client-0.13.2</module>
         <module>okhttp-3.4.2</module>
     </modules>
 


[4/5] servicemix-bundles git commit: [SM-3150] Add kafka-clients-0.10.1.0 to module list to release

Posted by ac...@apache.org.
[SM-3150] Add kafka-clients-0.10.1.0 to module list to release


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

Branch: refs/heads/master
Commit: 600c13e97e8d7cba34fd38680859eec2cb983592
Parents: b13aef1
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Nov 8 12:55:55 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Nov 8 12:55:55 2016 +0100

----------------------------------------------------------------------
 pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/600c13e9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 56b7946..a80fa16 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,7 @@
     <modules>
         <!-- add modules for all bundles to released in the next batch here -->
         <module>okhttp-3.4.2</module>
+        <module>kafka-clients-0.10.1.0</module>
     </modules>
 
 </project>


[3/5] servicemix-bundles git commit: SM-3150 - Keep kafka/kafka-version.properties in kafka-clients bundle

Posted by ac...@apache.org.
SM-3150 - Keep kafka/kafka-version.properties in kafka-clients 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/b13aef1f
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/b13aef1f
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/b13aef1f

Branch: refs/heads/master
Commit: b13aef1fc23edae2f789c948ecfc28544c839984
Parents: e68bce9
Author: Antoine DESSAIGNE <an...@gmail.com>
Authored: Tue Nov 8 12:46:04 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Nov 8 12:54:44 2016 +0100

----------------------------------------------------------------------
 kafka-clients-0.10.1.0/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b13aef1f/kafka-clients-0.10.1.0/pom.xml
----------------------------------------------------------------------
diff --git a/kafka-clients-0.10.1.0/pom.xml b/kafka-clients-0.10.1.0/pom.xml
index 3fdf24d..457793c 100644
--- a/kafka-clients-0.10.1.0/pom.xml
+++ b/kafka-clients-0.10.1.0/pom.xml
@@ -110,9 +110,9 @@
                             <filters>
                                 <filter>
                                     <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <excludes>
-                                        <exclude>**/*</exclude>
-                                    </excludes>
+                                    <includes>
+                                        <include>kafka/kafka-version.properties</include>
+                                    </includes>
                                 </filter>
                             </filters>
                             <promoteTransitiveDependencies>true</promoteTransitiveDependencies>


[5/5] servicemix-bundles git commit: [SM-3151] Create OSGi bundle for Solr 5.5.2

Posted by ac...@apache.org.
[SM-3151] Create OSGi bundle for Solr 5.5.2


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

Branch: refs/heads/master
Commit: 3bf1d8013cc1b1b75a70085c2795642d347c16ff
Parents: 600c13e
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Nov 8 13:00:06 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Nov 8 13:00:06 2016 +0100

----------------------------------------------------------------------
 pom.xml                                         |   1 +
 solr-solrj-5.5.2/pom.xml                        | 169 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  21 +++
 3 files changed, 191 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/3bf1d801/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a80fa16..2b2a5ce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,6 +45,7 @@
         <!-- add modules for all bundles to released in the next batch here -->
         <module>okhttp-3.4.2</module>
         <module>kafka-clients-0.10.1.0</module>
+        <module>solr-solrj-5.5.2</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/3bf1d801/solr-solrj-5.5.2/pom.xml
----------------------------------------------------------------------
diff --git a/solr-solrj-5.5.2/pom.xml b/solr-solrj-5.5.2/pom.xml
new file mode 100644
index 0000000..d99e7c9
--- /dev/null
+++ b/solr-solrj-5.5.2/pom.xml
@@ -0,0 +1,169 @@
+<?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.solr-solrj</artifactId>
+    <packaging>bundle</packaging>
+    <version>5.5.2_1-SNAPSHOT</version>
+    <name>Apache ServiceMix :: Bundles :: SolrJ</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.apache.solr</pkgGroupId>
+        <pkgArtifactId>solr-solrj</pkgArtifactId>
+        <pkgVersion>5.5.2</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.apache.solr
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.net.ssl*,
+            javax.security.auth.login,
+            javax.xml*,
+            org.w3c.dom,
+            org.xml.sax*,
+            org.apache.commons.io,
+            org.apache.commons.io.input,
+            org.apache.http*,
+            org.apache.noggit;resolution:=optional,
+            org.apache.zookeeper*;resolution:=optional,
+            org.noggit;resolution:=optional,
+            org.slf4j;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.zookeeper</groupId>
+                    <artifactId>zookeeper</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-io</groupId>
+                    <artifactId>commons-io</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.noggit</groupId>
+                    <artifactId>noggit</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.httpcomponents</groupId>
+                    <artifactId>httpclient</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.httpcomponents</groupId>
+                    <artifactId>httpmime</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.codehaus.woodstox</groupId>
+                    <artifactId>wstx-asl</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.zookeeper</groupId>
+                    <artifactId>zookeeper</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-io</groupId>
+                    <artifactId>commons-io</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.noggit</groupId>
+                    <artifactId>noggit</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.httpcomponents</groupId>
+                    <artifactId>httpclient</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.httpcomponents</groupId>
+                    <artifactId>httpmime</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.codehaus.woodstox</groupId>
+                    <artifactId>wstx-asl</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/3bf1d801/solr-solrj-5.5.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/solr-solrj-5.5.2/src/main/resources/OSGI-INF/bundle.info b/solr-solrj-5.5.2/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..d679ddc
--- /dev/null
+++ b/solr-solrj-5.5.2/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,21 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Solr is the popular, blazing fast open source enterprise search platform from the Apache Lucene project.
+    Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering,
+    database integration, rich document (e.g., Word, PDF) handling, and geospatial search. Solr is highly scalable,
+    providing distributed search and index replication, and it powers the search and navigation features of many of
+    the world's largest internet sites.
+
+    Solr is written in Java and runs as a standalone full-text search server within a servlet container such as Tomcat.
+    Solr uses the Lucene Java search library at its core for full-text indexing and search, and has REST-like HTTP/XML
+    and JSON APIs that make it easy to use from virtually any programming language. Solr's powerful external
+    configuration allows it to be tailored to almost any type of application without Java coding, and it has an
+    extensive plugin architecture when more advanced customization is required.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://lucene.apache.org/solr/\u001B[0m