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:38:00 UTC

[2/2] servicemix-bundles git commit: SM-2890 - Create OSGi bundle for okio 1.6.0 (close #58)

SM-2890 - Create OSGi bundle for okio 1.6.0 (close #58)


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

Branch: refs/heads/master
Commit: 1df45fdfe7aa1b7dad617eadaeffbb4690fe9e3e
Parents: f529f3f 76e9f3b
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Wed Mar 23 15:36:50 2016 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Wed Mar 23 15:36:50 2016 +0100

----------------------------------------------------------------------
 okio-1.6.0/pom.xml                              | 107 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 +++
 pom.xml                                         |   1 +
 3 files changed, 120 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/1df45fdf/okio-1.6.0/pom.xml
----------------------------------------------------------------------
diff --cc okio-1.6.0/pom.xml
index 0000000,a750929..ca9246c
mode 000000,100644..100644
--- a/okio-1.6.0/pom.xml
+++ b/okio-1.6.0/pom.xml
@@@ -1,0 -1,107 +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.okio</artifactId>
+     <version>1.6.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.okio</pkgGroupId>
+         <pkgArtifactId>okio</pkgArtifactId>
+         <pkgVersion>1.6.0</pkgVersion>
+         <servicemix.osgi.export.pkg>
 -            okio.*;version=${pkgVersion}
++            okio
+         </servicemix.osgi.export.pkg>
+         <servicemix.osgi.import.pkg>
+             *
+         </servicemix.osgi.import.pkg>
+     </properties>
+ 
+     <dependencies>
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>okio</artifactId>
+             <version>${pkgVersion}</version>
+         </dependency>
+ 
+         <!-- sources -->
+         <dependency>
+             <groupId>${pkgGroupId}</groupId>
+             <artifactId>okio</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>
+ </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/1df45fdf/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index 83b0526,e940e63..5d4fb33
--- a/pom.xml
+++ b/pom.xml
@@@ -55,13 -53,7 +55,14 @@@
          <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>
      </modules>
  
  </project>