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

[1/6] servicemix-bundles git commit: SM-2999 : Create OSGi bundle for OkHttp 3.3.0

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 2c6faeeca -> 311ed2e93


SM-2999 : Create OSGi bundle for OkHttp 3.3.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/ddb6aaa2
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/ddb6aaa2
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/ddb6aaa2

Branch: refs/heads/master
Commit: ddb6aaa2f169c6c96efd650f186d26e6317289d6
Parents: cb4fcc5
Author: lburgazzoli <lb...@gmail.com>
Authored: Wed May 25 10:09:28 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Wed May 25 10:09:28 2016 +0200

----------------------------------------------------------------------
 okhttp-3.3.0/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/ddb6aaa2/okhttp-3.3.0/pom.xml
----------------------------------------------------------------------
diff --git a/okhttp-3.3.0/pom.xml b/okhttp-3.3.0/pom.xml
new file mode 100644
index 0000000..711a70d
--- /dev/null
+++ b/okhttp-3.3.0/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.3.0_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <scm>
+        <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection>
+        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
+        <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url>
+      <tag>HEAD</tag>
+  </scm>
+
+    <properties>
+        <pkgGroupId>com.squareup.okhttp3</pkgGroupId>
+        <pkgArtifactId>okhttp</pkgArtifactId>
+        <pkgVersion>3.3.0</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            okhttp3
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            okio;version="[1.8.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/ddb6aaa2/okhttp-3.3.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/okhttp-3.3.0/src/main/resources/OSGI-INF/bundle.info b/okhttp-3.3.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..b06d196
--- /dev/null
+++ b/okhttp-3.3.0/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,11 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    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/ddb6aaa2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 74237fa..0375d00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,7 @@
         <module>kafka_2.10-0.10.0.0</module>
         <module>kafka-clients-0.10.0.0</module>
         <module>facebook4j-2.4.4</module>
+        <module>okhttp-3.3.0</module>
     </modules>
 
 </project>


[2/6] servicemix-bundles git commit: SM-3000 : spring-security-config 3.2.8_RELEASE_1 does not contains spring schemas and handlers

Posted by ac...@apache.org.
SM-3000 : spring-security-config 3.2.8_RELEASE_1 does not contains spring schemas and handlers


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

Branch: refs/heads/master
Commit: 85aa1c060a1e43a105ebe9376f367ed1cbefa55b
Parents: cb4fcc5
Author: lburgazzoli <lb...@gmail.com>
Authored: Wed May 25 11:24:17 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Wed May 25 11:24:17 2016 +0200

----------------------------------------------------------------------
 pom.xml                                      |  1 +
 spring-security-config-3.2.8.RELEASE/pom.xml | 31 +++++++++++++----------
 2 files changed, 18 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/85aa1c06/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 74237fa..415be75 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,7 @@
         <module>kafka_2.10-0.10.0.0</module>
         <module>kafka-clients-0.10.0.0</module>
         <module>facebook4j-2.4.4</module>
+        <module>spring-security-config-3.2.8.RELEASE</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/85aa1c06/spring-security-config-3.2.8.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/spring-security-config-3.2.8.RELEASE/pom.xml b/spring-security-config-3.2.8.RELEASE/pom.xml
index 8acaaba..4169c50 100644
--- a/spring-security-config-3.2.8.RELEASE/pom.xml
+++ b/spring-security-config-3.2.8.RELEASE/pom.xml
@@ -51,18 +51,18 @@
         <servicemix.osgi.import.pkg>
             javax.servlet;resolution:=optional;version=0,
             javax.servlet.http;resolution:=optional;version=0,
-	    org.apache.commons.logging;version="[1.0.4, 2.0.0)",
-	    org.aspectj.weaver.tools;resolution:=optional;version="[1.7, 2)",
-	    org.springframework.aop*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.beans*;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.context*;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.core*;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.security*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.security.web*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
+            org.apache.commons.logging;version="[1.0.4, 2.0.0)",
+            org.aspectj.weaver.tools;resolution:=optional;version="[1.7, 2)",
+            org.springframework.aop*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
+            org.springframework.beans*;version="[${pkgVersion}, 3.3.0)",
+            org.springframework.context*;version="[${pkgVersion}, 3.3.0)",
+            org.springframework.core*;version="[${pkgVersion}, 3.3.0)",
+            org.springframework.security*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
+            org.springframework.security.web*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
             org.springframework.web*;resolution:=optional;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.util;version="[${pkgVersion}, 3.3.0)",
-	    org.springframework.util.xml;version="[${pkgVersion}, 3.3.0)",
-	    org.w3c.dom;resolution:=optional;version=0,
+            org.springframework.util;version="[${pkgVersion}, 3.3.0)",
+            org.springframework.util.xml;version="[${pkgVersion}, 3.3.0)",
+            org.w3c.dom;resolution:=optional;version=0,
             javax.sql;resolution:=optional, 
             org.aopalliance.intercept;resolution:=optional, 
             org.openid4java.consumer;resolution:=optional, 
@@ -108,9 +108,12 @@
                             <filters>
                                 <filter>
                                     <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <excludes>
-                                        <exclude>**</exclude>
-                                    </excludes>
+                                    <includes>
+                                        <include>**/*.gif</include>
+                                        <include>**/*.xsd</include>
+                                        <include>**/*.xml</include>
+                                        <include>META-INF/spring*</include>
+                                    </includes>
                                 </filter>
                             </filters>
                             <promoteTransitiveDependencies>true</promoteTransitiveDependencies>


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

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


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

Branch: refs/heads/master
Commit: c5a9e503d020c4df880ce5cb1e767a586f7fdf39
Parents: 2a0f138 85aa1c0
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 27 09:19:26 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 27 09:19:26 2016 +0200

----------------------------------------------------------------------
 pom.xml                                      |  1 +
 spring-security-config-3.2.8.RELEASE/pom.xml | 31 +++++++++++++----------
 2 files changed, 18 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c5a9e503/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index 177424b,415be75..e65e7aa
--- a/pom.xml
+++ b/pom.xml
@@@ -69,9 -69,7 +69,10 @@@
          <module>kafka_2.10-0.10.0.0</module>
          <module>kafka-clients-0.10.0.0</module>
          <module>facebook4j-2.4.4</module>
 +        <module>hystrix-event-stream-1.5.3</module>
 +        <module>hystrix-1.5.3</module>
 +        <module>okhttp-3.3.0</module>
+         <module>spring-security-config-3.2.8.RELEASE</module>
      </modules>
  
  </project>


[3/6] servicemix-bundles git commit: SM-3002: Create OSGi bundle for Orbitz Consul Client 0.12.2

Posted by ac...@apache.org.
SM-3002: Create OSGi bundle for Orbitz Consul Client 0.12.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/37eaf3f6
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/37eaf3f6
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/37eaf3f6

Branch: refs/heads/master
Commit: 37eaf3f69ffc7772291b115bb0d2441b840d28ae
Parents: 2c6faee
Author: lburgazzoli <lb...@gmail.com>
Authored: Thu May 26 16:45:10 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Thu May 26 16:45:10 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/37eaf3f6/orbitz-consul-client-0.12.2/pom.xml
----------------------------------------------------------------------
diff --git a/orbitz-consul-client-0.12.2/pom.xml b/orbitz-consul-client-0.12.2/pom.xml
new file mode 100644
index 0000000..e37de2a
--- /dev/null
+++ b/orbitz-consul-client-0.12.2/pom.xml
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>12</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.orbitz-consul-client</artifactId>
+    <version>0.12.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.orbitz.consul</pkgGroupId>
+        <pkgArtifactId>consul-client</pkgArtifactId>
+        <pkgVersion>0.12.2</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.orbitz.*;-noimport:=true
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.immutables.value;resolution:=optional,
+            android.*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <repositories>
+        <repository>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+            <id>central</id>
+            <name>bintray</name>
+            <url>http://jcenter.bintray.com</url>
+        </repository>
+    </repositories>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/37eaf3f6/orbitz-consul-client-0.12.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/orbitz-consul-client-0.12.2/src/main/resources/OSGI-INF/bundle.info b/orbitz-consul-client-0.12.2/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..1ba971e
--- /dev/null
+++ b/orbitz-consul-client-0.12.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
+    Java Client for Consul HTTP API.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/OrbitzWorldwide/consul-client\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/37eaf3f6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f7c7454..f4dc011 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,6 +71,7 @@
         <module>facebook4j-2.4.4</module>
         <module>hystrix-event-stream-1.5.3</module>
         <module>hystrix-1.5.3</module>
+        <module>orbitz-consul-client-0.12.2</module>  
     </modules>
 
 </project>


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

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


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

Branch: refs/heads/master
Commit: 2a0f1387cf2051f4772ba549d262f67b96fad257
Parents: 2c6faee ddb6aaa
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 27 09:17:22 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 27 09:17:22 2016 +0200

----------------------------------------------------------------------
 okhttp-3.3.0/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/2a0f1387/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index f7c7454,0375d00..177424b
--- a/pom.xml
+++ b/pom.xml
@@@ -69,8 -69,7 +69,9 @@@
          <module>kafka_2.10-0.10.0.0</module>
          <module>kafka-clients-0.10.0.0</module>
          <module>facebook4j-2.4.4</module>
 +        <module>hystrix-event-stream-1.5.3</module>
 +        <module>hystrix-1.5.3</module>
+         <module>okhttp-3.3.0</module>
      </modules>
  
  </project>


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

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


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

Branch: refs/heads/master
Commit: 311ed2e9386af011724c739d7184c5671a2594d6
Parents: c5a9e50 37eaf3f
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri May 27 09:21:50 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri May 27 09:21:50 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/311ed2e9/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index e65e7aa,f4dc011..6e274e4
--- a/pom.xml
+++ b/pom.xml
@@@ -71,8 -71,7 +71,9 @@@
          <module>facebook4j-2.4.4</module>
          <module>hystrix-event-stream-1.5.3</module>
          <module>hystrix-1.5.3</module>
 -        <module>orbitz-consul-client-0.12.2</module>  
 +        <module>okhttp-3.3.0</module>
 +        <module>spring-security-config-3.2.8.RELEASE</module>
++        <module>orbitz-consul-client-0.12.2</module>
      </modules>
  
  </project>