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/12/23 08:44:34 UTC

[1/3] servicemix-bundles git commit: [SM-3186] Create OSGi bundle for Elasticsearch 2.4.3

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master f3cc7af2e -> 597099b08


[SM-3186] Create OSGi bundle for Elasticsearch 2.4.3


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

Branch: refs/heads/master
Commit: a8a8e26cd05881d90da6005452a31384558cb9c3
Parents: f3cc7af
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 23 09:25:06 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 23 09:25:06 2016 +0100

----------------------------------------------------------------------
 elasticsearch-2.4.3/pom.xml                     | 132 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  17 +++
 pom.xml                                         |   1 +
 3 files changed, 150 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/a8a8e26c/elasticsearch-2.4.3/pom.xml
----------------------------------------------------------------------
diff --git a/elasticsearch-2.4.3/pom.xml b/elasticsearch-2.4.3/pom.xml
new file mode 100644
index 0000000..c0d29f4
--- /dev/null
+++ b/elasticsearch-2.4.3/pom.xml
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>12</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId>
+    <version>2.4.3_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>org.elasticsearch</pkgGroupId>
+        <pkgArtifactId>elasticsearch</pkgArtifactId>
+        <pkgVersion>2.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,
+            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/a8a8e26c/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..af11bfd
--- /dev/null
+++ b/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,17 @@
+\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/a8a8e26c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a275980..8b502e0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -81,6 +81,7 @@
         <module>elasticsearch-1.3.8</module>
         <module>bazaarvoice-jolt-0.1.0</module>
         <module>orbitz-consul-client-0.13.7</module>
+        <module>elasticsearch-2.4.3</module>
     </modules>
 
 </project>


[3/3] servicemix-bundles git commit: [SM-3188] Create OSGi bundle for AWS Java SDK 1.11.69

Posted by ac...@apache.org.
[SM-3188] Create OSGi bundle for AWS Java SDK 1.11.69


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

Branch: refs/heads/master
Commit: 597099b0810b504473e6f9c8a13fb0f9c7ce6263
Parents: bd44b70
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 23 09:43:13 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 23 09:43:13 2016 +0100

----------------------------------------------------------------------
 aws-java-sdk-1.11.69/pom.xml                    | 173 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  24 +++
 pom.xml                                         |   1 +
 3 files changed, 198 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/597099b0/aws-java-sdk-1.11.69/pom.xml
----------------------------------------------------------------------
diff --git a/aws-java-sdk-1.11.69/pom.xml b/aws-java-sdk-1.11.69/pom.xml
new file mode 100644
index 0000000..e3c5ebe
--- /dev/null
+++ b/aws-java-sdk-1.11.69/pom.xml
@@ -0,0 +1,173 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_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.aws-java-sdk</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.11.69_1-SNAPSHOT</version>
+    <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.amazonaws</pkgGroupId>
+        <pkgArtifactId>aws-java-sdk</pkgArtifactId>
+        <pkgVersion>1.11.69</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.amazonaws*
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.fasterxml.jackson*;resolution:=optional,
+            javax.crypto*,
+            javax.mail*;version="[1.4,2)";resolution:=optional,
+            javax.management,
+            javax.net*,
+            javax.xml*,
+            org.w3c.dom,
+            org.xml.sax*,
+            org.apache.commons.codec*;version="[1.3,2)",
+            org.apache.commons.logging*;version="[1.1,2)";resolution:=optional,
+            org.aspectj.lang*;version="[1,2)";resolution:=optional,
+            org.junit*;version="[4,5)";resolution:=optional,
+            org.springframework*;version="[2.5,4)";resolution:=optional,
+            javax.security.auth.x500;resolution:=optional,
+            org.ietf.jgss;resolution:=optional,
+            javax.naming,
+            javax.naming.directory,
+            javax.naming.ldap
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.private.pkg>
+            org.apache.http.*,
+            org.joda.convert*,
+            org.joda.time*,
+            software.amazon.ion*
+        </servicemix.osgi.private.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}-core</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.joda</groupId>
+            <artifactId>joda-convert</artifactId>
+            <version>1.5</version>
+        </dependency>
+        <dependency>
+		    <groupId>software.amazon.ion</groupId>
+		    <artifactId>ion-java</artifactId>
+		    <version>1.0.0</version>
+        </dependency>
+
+        <!-- sources
+        Not available on Central
+        <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>${pkgGroupId}:${pkgArtifactId}-core</include>
+                                    <include>software.amazon.ion:ion-java</include>
+                                    <include>org.joda:joda-convert</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <includes>
+                                        <include>mime.types</include>
+                                        <include>**/*.handlers</include>
+                                        <include>**/*.xml</include>
+                                        <include>**/*.properties</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}-core</artifact>
+                                    <includes>
+                                        <include>**/*.json</include>
+                                        <include>**/*.handlers</include>
+                                        <include>**/*.xml</include>
+                                        <include>**/*.properties</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    <artifact>software.amazon.ion:ion-java</artifact>
+                                    <excludes>
+                                        <exclude>**/*</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>org.joda:joda-convert</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/597099b0/aws-java-sdk-1.11.69/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/aws-java-sdk-1.11.69/src/main/resources/OSGI-INF/bundle.info b/aws-java-sdk-1.11.69/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..03e3725
--- /dev/null
+++ b/aws-java-sdk-1.11.69/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,24 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Since early 2006, Amazon Web Services (AWS) has provided companies of all sizes with an infrastructure web
+    services platform in the cloud. With AWS you can requisition compute power, storage, and other
+    services\u2013gaining access to a suite of elastic IT infrastructure services as your business demands them.
+    With AWS you have the flexibility to choose whichever development platform or programming model makes the
+    most sense for the problems you\u2019re trying to solve. You pay only for what you use, with no up-front expenses
+    or long-term commitments, making AWS the most cost-effective way to deliver your application to your
+    customers and clients. And, with AWS, you can take advantage of Amazon.com\u2019s global computing infrastructure
+    that is the backbone of Amazon.com\u2019s multi-billion retail business and transactional enterprise whose
+    scalable, reliable, and secure distributed computing infrastructure has been honed for over a decade.
+
+    Using Amazon Web Services, an e-commerce web site can weather unforeseen demand with ease; a pharmaceutical
+    company can \u201crent\u201d computing power to execute large-scale simulations; a media company can serve unlimited
+    videos, music, and more; and an enterprise can deploy bandwidth-consuming services and training to its
+    mobile workforce.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://aws.amazon.com/\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/597099b0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9087f8b..3323df8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,6 +83,7 @@
         <module>orbitz-consul-client-0.13.7</module>
         <module>elasticsearch-2.4.3</module>
         <module>libphonenumber-8.0.0</module>
+        <module>aws-java-sdk-1.11.69</module>
     </modules>
 
 </project>


[2/3] servicemix-bundles git commit: [SM-3187] Create OSGi bundle for Libphonenumber 8.0.0

Posted by ac...@apache.org.
[SM-3187] Create OSGi bundle for Libphonenumber 8.0.0


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

Branch: refs/heads/master
Commit: bd44b70cd62d07db70eeaacc7a411160a9ee762b
Parents: a8a8e26
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 23 09:31:29 2016 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 23 09:31:29 2016 +0100

----------------------------------------------------------------------
 libphonenumber-8.0.0/pom.xml                    | 106 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 +++
 pom.xml                                         |   1 +
 3 files changed, 119 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/bd44b70c/libphonenumber-8.0.0/pom.xml
----------------------------------------------------------------------
diff --git a/libphonenumber-8.0.0/pom.xml b/libphonenumber-8.0.0/pom.xml
new file mode 100644
index 0000000..6120043
--- /dev/null
+++ b/libphonenumber-8.0.0/pom.xml
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>12</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.libphonenumber</artifactId>
+    <version>8.0.0_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <scm>
+        <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection>
+        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
+        <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url>
+    <tag>HEAD</tag>
+  </scm>
+
+    <properties>
+        <pkgGroupId>com.googlecode.libphonenumber</pkgGroupId>
+        <pkgArtifactId>libphonenumber</pkgArtifactId>
+        <pkgVersion>8.0.0</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.google.i18n.phonenumbers
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            com.google.protobuf.nano
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <includes>
+                                        <include>META-INF/services/**</include>
+                                    </includes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/bd44b70c/libphonenumber-8.0.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/libphonenumber-8.0.0/src/main/resources/OSGI-INF/bundle.info b/libphonenumber-8.0.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..708a46f
--- /dev/null
+++ b/libphonenumber-8.0.0/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,12 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Google's common Java library for parsing, formatting, storing and validating international phone numbers.
+    Optimized for running on smartphones.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/googlei18n/libphonenumber\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/bd44b70c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 8b502e0..9087f8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,6 +82,7 @@
         <module>bazaarvoice-jolt-0.1.0</module>
         <module>orbitz-consul-client-0.13.7</module>
         <module>elasticsearch-2.4.3</module>
+        <module>libphonenumber-8.0.0</module>
     </modules>
 
 </project>