You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2016/03/23 16:10:34 UTC

[1/2] servicemix-bundles git commit: SM-2893 : Create OSGi bundle or Squareup Retrofit 1.9.0

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 04f6e5ce7 -> 9f3b96134


SM-2893 : Create OSGi bundle or Squareup Retrofit 1.9.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/8a65c2c8
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/8a65c2c8
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/8a65c2c8

Branch: refs/heads/master
Commit: 8a65c2c88300f6e6323eadada2e5eed440c728dc
Parents: 3283fd3
Author: lburgazzoli <lb...@gmail.com>
Authored: Mon Feb 29 12:16:04 2016 +0100
Committer: lburgazzoli <lb...@gmail.com>
Committed: Mon Feb 29 12:16:04 2016 +0100

----------------------------------------------------------------------
 pom.xml                                         |   1 +
 retrofit-1.9.0/pom.xml                          | 217 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 3 files changed, 229 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8a65c2c8/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 92b311f..695531f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,6 +53,7 @@
         <module>lucene-queryparser-5.5.0</module>
         <module>lucene-sandbox-5.5.0</module>
         <module>solr-solrj-5.5.0</module>
+        <module>retrofit-1.9.0</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8a65c2c8/retrofit-1.9.0/pom.xml
----------------------------------------------------------------------
diff --git a/retrofit-1.9.0/pom.xml b/retrofit-1.9.0/pom.xml
new file mode 100644
index 0000000..50c941e
--- /dev/null
+++ b/retrofit-1.9.0/pom.xml
@@ -0,0 +1,217 @@
+<?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.retrofit</artifactId>
+    <version>1.9.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.retrofit</pkgGroupId>
+        <pkgArtifactId>retrofit</pkgArtifactId>
+        <pkgVersion>1.9.0</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            retrofit.*;version=${pkgVersion};-split-package:=merge-first
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.apache.http.*;resolution:=optional,
+            android.*;resolution:=optional,
+            com.fasterxml.jackson.*;resolution:=optional,
+            com.google.appengine.*;resolution:=optional,
+            com.google.gson.*;resolution:=optional,
+            com.google.protobuf.*;resolution:=optional,
+            com.squareup.wire.*;resolution:=optional,
+            org.simpleframework.*;resolution:=optional,
+            rx.*;resolution:=optional,
+            com.squareup.okhttp;version="[2.2,3)",
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>retrofit</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-jackson</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>retrofit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-protobuf</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>retrofit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-wire</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>retrofit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-simplexml</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>${pkgGroupId}</groupId>
+                    <artifactId>retrofit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>retrofit</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-jackson</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-protobuf</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-wire</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>converter-simplexml</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}:retrofit</include>
+                                    <include>${pkgGroupId}:converter-jackson</include>
+                                    <include>${pkgGroupId}:converter-protobuf</include>
+                                    <include>${pkgGroupId}:converter-wire</include>
+                                    <include>${pkgGroupId}:converter-simplexml</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:retrofit</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:converter-jackson</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:converter-protobuf</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:converter-wire</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:converter-simplexml</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/8a65c2c8/retrofit-1.9.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/retrofit-1.9.0/src/main/resources/OSGI-INF/bundle.info b/retrofit-1.9.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..00e626b
--- /dev/null
+++ b/retrofit-1.9.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
+    A type-safe HTTP client for Android and Java.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://square.github.io/retrofit/\u001B[0m


[2/2] servicemix-bundles git commit: SM-2893 - This closes #61

Posted by jb...@apache.org.
SM-2893 - This closes #61

Merge branch 'squareup-retrofit' 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/9f3b9613
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/9f3b9613
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/9f3b9613

Branch: refs/heads/master
Commit: 9f3b96134431e1b023f981de7bf21670d3865bcb
Parents: 04f6e5c 8a65c2c
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Wed Mar 23 16:09:42 2016 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Wed Mar 23 16:09:42 2016 +0100

----------------------------------------------------------------------
 pom.xml                                         |   1 +
 retrofit-1.9.0/pom.xml                          | 217 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  11 +
 3 files changed, 229 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/9f3b9613/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index f4f4820,695531f..9e2111a
--- a/pom.xml
+++ b/pom.xml
@@@ -55,16 -53,7 +55,17 @@@
          <module>lucene-queryparser-5.5.0</module>
          <module>lucene-sandbox-5.5.0</module>
          <module>solr-solrj-5.5.0</module>
 +        <module>jedis-2.8.0</module>
 +        <module>aws-java-sdk-1.10.60</module>
 +        <module>xstream-1.4.9</module>
 +        <module>elasticsearch-2.2.1</module>
 +        <module>facebook4j-2.4.3</module>
 +        <module>gson-2.1</module>
 +        <module>ironmq-3.0.3</module>
 +        <module>okio-1.6.0</module>
 +        <module>okhttp-2.7.5</module>
 +        <module>okhttp-3.2.0</module>
+         <module>retrofit-1.9.0</module>
      </modules>
  
  </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/9f3b9613/retrofit-1.9.0/pom.xml
----------------------------------------------------------------------
diff --cc retrofit-1.9.0/pom.xml
index 0000000,50c941e..d7a800a
mode 000000,100644..100644
--- a/retrofit-1.9.0/pom.xml
+++ b/retrofit-1.9.0/pom.xml
@@@ -1,0 -1,217 +1,217 @@@
+ <?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.retrofit</artifactId>
+     <version>1.9.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.retrofit</pkgGroupId>
+         <pkgArtifactId>retrofit</pkgArtifactId>
+         <pkgVersion>1.9.0</pkgVersion>
+         <servicemix.osgi.export.pkg>
 -            retrofit.*;version=${pkgVersion};-split-package:=merge-first
++            retrofit
+         </servicemix.osgi.export.pkg>
+         <servicemix.osgi.import.pkg>
+             org.apache.http.*;resolution:=optional,
+             android.*;resolution:=optional,
+             com.fasterxml.jackson.*;resolution:=optional,
+             com.google.appengine.*;resolution:=optional,
+             com.google.gson.*;resolution:=optional,
+             com.google.protobuf.*;resolution:=optional,
+             com.squareup.wire.*;resolution:=optional,
+             org.simpleframework.*;resolution:=optional,
+             rx.*;resolution:=optional,
+             com.squareup.okhttp;version="[2.2,3)",
+             *
+         </servicemix.osgi.import.pkg>
+     </properties>
+ 
+     <dependencies>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>retrofit</artifactId>
+             <version>${pkgVersion}</version>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-jackson</artifactId>
+             <version>${pkgVersion}</version>
+             <exclusions>
+                 <exclusion>
+                     <groupId>${pkgGroupId}</groupId>
+                     <artifactId>retrofit</artifactId>
+                 </exclusion>
+             </exclusions>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-protobuf</artifactId>
+             <version>${pkgVersion}</version>
+             <exclusions>
+                 <exclusion>
+                     <groupId>${pkgGroupId}</groupId>
+                     <artifactId>retrofit</artifactId>
+                 </exclusion>
+             </exclusions>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-wire</artifactId>
+             <version>${pkgVersion}</version>
+             <exclusions>
+                 <exclusion>
+                     <groupId>${pkgGroupId}</groupId>
+                     <artifactId>retrofit</artifactId>
+                 </exclusion>
+             </exclusions>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-simplexml</artifactId>
+             <version>${pkgVersion}</version>
+             <exclusions>
+                 <exclusion>
+                     <groupId>${pkgGroupId}</groupId>
+                     <artifactId>retrofit</artifactId>
+                 </exclusion>
+             </exclusions>
+         </dependency>
+ 
+         <!-- sources -->
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>retrofit</artifactId>
+             <version>${pkgVersion}</version>
+             <classifier>sources</classifier>
+             <optional>true</optional>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-jackson</artifactId>
+             <version>${pkgVersion}</version>
+             <classifier>sources</classifier>
+             <optional>true</optional>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-protobuf</artifactId>
+             <version>${pkgVersion}</version>
+             <classifier>sources</classifier>
+             <optional>true</optional>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-wire</artifactId>
+             <version>${pkgVersion}</version>
+             <classifier>sources</classifier>
+             <optional>true</optional>
+         </dependency>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>converter-simplexml</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}:retrofit</include>
+                                     <include>${pkgGroupId}:converter-jackson</include>
+                                     <include>${pkgGroupId}:converter-protobuf</include>
+                                     <include>${pkgGroupId}:converter-wire</include>
+                                     <include>${pkgGroupId}:converter-simplexml</include>
+                                 </includes>
+                             </artifactSet>
+                             <filters>
+                                 <filter>
+                                     <artifact>${pkgGroupId}:retrofit</artifact>
+                                     <excludes>
+                                         <exclude>**</exclude>
+                                     </excludes>
+                                 </filter>
+                                 <filter>
+                                     <artifact>${pkgGroupId}:converter-jackson</artifact>
+                                     <excludes>
+                                         <exclude>**</exclude>
+                                     </excludes>
+                                 </filter>
+                                 <filter>
+                                     <artifact>${pkgGroupId}:converter-protobuf</artifact>
+                                     <excludes>
+                                         <exclude>**</exclude>
+                                     </excludes>
+                                 </filter>
+                                 <filter>
+                                     <artifact>${pkgGroupId}:converter-wire</artifact>
+                                     <excludes>
+                                         <exclude>**</exclude>
+                                     </excludes>
+                                 </filter>
+                                 <filter>
+                                     <artifact>${pkgGroupId}:converter-simplexml</artifact>
+                                     <excludes>
+                                         <exclude>**</exclude>
+                                     </excludes>
+                                 </filter>
+                             </filters>
+                             <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                             <createDependencyReducedPom>true</createDependencyReducedPom>
+                         </configuration>
+                     </execution>
+                 </executions>
+             </plugin>
+         </plugins>
+     </build>
+ </project>