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 2017/04/18 09:42:14 UTC

[1/3] servicemix-bundles git commit: [SM-3301] Create OSGi bundles for Docker Java 3.0.9

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master ee137d012 -> c5cd2de65


[SM-3301] Create OSGi bundles for Docker Java 3.0.9


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

Branch: refs/heads/master
Commit: ed797a657774981693a0b1bd334a4a6fa323cbf0
Parents: ee137d0
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Apr 18 11:34:39 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Apr 18 11:34:39 2017 +0200

----------------------------------------------------------------------
 docker-java-3.0.9/pom.xml                       | 107 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 pom.xml                                         |   1 +
 3 files changed, 119 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/ed797a65/docker-java-3.0.9/pom.xml
----------------------------------------------------------------------
diff --git a/docker-java-3.0.9/pom.xml b/docker-java-3.0.9/pom.xml
new file mode 100644
index 0000000..64c5685
--- /dev/null
+++ b/docker-java-3.0.9/pom.xml
@@ -0,0 +1,107 @@
+<?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.docker-java</artifactId>
+    <version>3.0.9_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.github.docker-java</pkgGroupId>
+        <pkgArtifactId>docker-java</pkgArtifactId>
+        <pkgVersion>3.0.9</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.github.dockerjava
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <includes>
+                                        <include>**/*.properties</include>
+                                        <include>META-INF/services/**</include>
+                                    </includes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/ed797a65/docker-java-3.0.9/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/docker-java-3.0.9/src/main/resources/OSGI-INF/bundle.info b/docker-java-3.0.9/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..dac604f
--- /dev/null
+++ b/docker-java-3.0.9/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
+    docker-java is Java API client for Docker. Supports a subset of the Docker Client API v1.16, Docker Server version 1.4.1
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://github.com/docker-java/docker-java\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/ed797a65/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d9ba7d8..396aaca 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>digitalocean-api-client-2.9</module>
+        <module>docker-java-3.0.9</module>
     </modules>
 
 </project>


[2/3] servicemix-bundles git commit: [SM-3295] Create OSGi bundles for Digital Ocean API Java Client 2.9

Posted by ac...@apache.org.
[SM-3295] Create OSGi bundles for Digital Ocean API Java Client 2.9


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

Branch: refs/heads/master
Commit: 24f5577f3569d645ed3db6534a214b794b6e838a
Parents: ed797a6
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Apr 18 11:39:19 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Apr 18 11:39:19 2017 +0200

----------------------------------------------------------------------
 digitalocean-api-client-2.9/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/24f5577f/digitalocean-api-client-2.9/pom.xml
----------------------------------------------------------------------
diff --git a/digitalocean-api-client-2.9/pom.xml b/digitalocean-api-client-2.9/pom.xml
index 29e858d..030068f 100644
--- a/digitalocean-api-client-2.9/pom.xml
+++ b/digitalocean-api-client-2.9/pom.xml
@@ -50,6 +50,7 @@
             com.myjeeva.digitalocean
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
+            *
         </servicemix.osgi.import.pkg>
     </properties>
 


[3/3] servicemix-bundles git commit: [SM-3300] Create OSGi bundles for OkHttp client 3.7.0

Posted by ac...@apache.org.
[SM-3300] Create OSGi bundles for OkHttp client 3.7.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/c5cd2de6
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/c5cd2de6
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/c5cd2de6

Branch: refs/heads/master
Commit: c5cd2de650438bb18ddd04518fe4f467a7fed1de
Parents: 24f5577
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Apr 18 11:41:29 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Apr 18 11:41:29 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c5cd2de6/okhttp-3.7.0/pom.xml
----------------------------------------------------------------------
diff --git a/okhttp-3.7.0/pom.xml b/okhttp-3.7.0/pom.xml
new file mode 100644
index 0000000..9eeea0c
--- /dev/null
+++ b/okhttp-3.7.0/pom.xml
@@ -0,0 +1,185 @@
+<?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.okhttp</artifactId>
+    <version>3.7.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.7.0</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            okhttp3
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            okio;version="[1.11.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-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-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-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-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/c5cd2de6/okhttp-3.7.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/okhttp-3.7.0/src/main/resources/OSGI-INF/bundle.info b/okhttp-3.7.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..b06d196
--- /dev/null
+++ b/okhttp-3.7.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/c5cd2de6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 396aaca..8aa085f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,6 +45,7 @@
         <!-- add modules for all bundles to released in the next batch here -->
         <module>digitalocean-api-client-2.9</module>
         <module>docker-java-3.0.9</module>
+        <module>okhttp-3.7.0</module>
     </modules>
 
 </project>