Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 83bbab2c4 -> 92c2bf547


[SM-2757] Create OSGi bundle for docker-java 2.1.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/d283f211
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/d283f211
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/d283f211

Branch: refs/heads/master
Commit: d283f21142a4016ac6f7e17092f63e5ef531066c
Parents: cc7d0b2
Author: Andrea Cosentino <[email protected]>
Authored: Thu Dec 3 17:41:11 2015 +0100
Committer: Andrea Cosentino <[email protected]>
Committed: Thu Dec 3 17:41:11 2015 +0100

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


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/d283f211/docker-java-2.1.2/pom.xml
----------------------------------------------------------------------
diff --git a/docker-java-2.1.2/pom.xml b/docker-java-2.1.2/pom.xml
new file mode 100644
index 0000000..1a2d933
--- /dev/null
+++ b/docker-java-2.1.2/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>12</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.docker-java</artifactId>
+    <version>2.1.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.github.docker-java</pkgGroupId>
+        <pkgArtifactId>docker-java</pkgArtifactId>
+        <pkgVersion>2.1.2</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/d283f211/docker-java-2.1.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/docker-java-2.1.2/src/main/resources/OSGI-INF/bundle.info 
b/docker-java-2.1.2/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..dac604f
--- /dev/null
+++ b/docker-java-2.1.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
+    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/d283f211/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 62af4da..1e1845e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,44 +43,7 @@
 
     <modules>
         <!-- add modules for all bundles to released in the next batch here -->
-        <module>spring-ldap-1.3.2.RELEASE</module>
-        <module>spring-ldap-2.0.0.RELEASE</module>
-        <module>spring-ldap-2.0.1.RELEASE</module>
-        <module>spring-ldap-2.0.2.RELEASE</module>
-        <module>spring-ldap-2.0.3.RELEASE</module>
-        <module>spring-ldap-2.0.4.RELEASE</module>
-        <module>gae-1.9.28</module>
-        <module>qpid-0.24</module>
-        <module>qpid-0.26</module>
-        <module>qpid-0.32</module>
-        <module>qpid-0.30</module>
-        <module>qpid-0.28</module>
-        <module>kafka_2.10-0.9.0.0</module>
-        <module>kafka-clients-0.9.0.0</module>
-        <module>spring-aop-4.2.3.RELEASE</module>
-        <module>spring-aspects-4.2.3.RELEASE</module>
-        <module>spring-beans-4.2.3.RELEASE</module>
-        <module>spring-context-4.2.3.RELEASE</module>
-        <module>spring-context-support-4.2.3.RELEASE</module>
-        <module>spring-core-4.2.3.RELEASE</module>
-        <module>spring-expression-4.2.3.RELEASE</module>
-        <module>spring-instrument-4.2.3.RELEASE</module>
-        <module>spring-jdbc-4.2.3.RELEASE</module>
-        <module>spring-jms-4.2.3.RELEASE</module>
-        <module>spring-messaging-4.2.3.RELEASE</module>
-        <module>spring-orm-4.2.3.RELEASE</module>
-        <module>spring-oxm-4.2.3.RELEASE</module>
-        <module>spring-test-4.2.3.RELEASE</module>
-        <module>spring-tx-4.2.3.RELEASE</module>
-        <module>spring-web-4.2.3.RELEASE</module>
-        <module>spring-webmvc-4.2.3.RELEASE</module>
-        <module>spring-webmvc-portlet-4.2.3.RELEASE</module>
-        <module>spring-websocket-4.2.3.RELEASE</module>
-        <module>aspectj-1.8.7</module>
-        <module>aspectj-1.8.6</module>
-        <module>aspectj-1.8.5</module>
-        <module>jt400-8.7</module>
-        <module>opensaml-2.6.5</module>
+        <module>docker-java-2.1.2</module>
     </modules>
 
 </project>

Reply via email to