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 15:47:14 UTC

[2/2] servicemix-bundles git commit: SM-2891 - Create OSGi bundle for Squareup OkHttp 2.7.5 (close #59)

SM-2891 - Create OSGi bundle for Squareup OkHttp 2.7.5 (close #59)

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

Branch: refs/heads/master
Commit: 6d3ebc703a3587af7f3a957797e854cca2b60d8c
Parents: 1df45fd d01ad48
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Wed Mar 23 15:45:46 2016 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Wed Mar 23 15:45:46 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/6d3ebc70/okhttp-2.7.5/pom.xml
----------------------------------------------------------------------
diff --cc okhttp-2.7.5/pom.xml
index 0000000,eaf603f..ebccbee
mode 000000,100644..100644
--- a/okhttp-2.7.5/pom.xml
+++ b/okhttp-2.7.5/pom.xml
@@@ -1,0 -1,215 +1,215 @@@
+ <?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>2.7.5_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.okhttp</pkgGroupId>
+         <pkgArtifactId>okhttp</pkgArtifactId>
+         <pkgVersion>2.7.5</pkgVersion>
+         <servicemix.osgi.export.pkg>
 -            com.squareup.okhttp.*;version=${pkgVersion};-split-package:=merge-first
++            com.squareup.okhttp
+         </servicemix.osgi.export.pkg>
+         <servicemix.osgi.import.pkg>
+             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/6d3ebc70/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index 5d4fb33,b0037ab..cf79460
--- a/pom.xml
+++ b/pom.xml
@@@ -55,14 -53,7 +55,15 @@@
          <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>
      </modules>
  
  </project>