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 2022/06/28 16:07:09 UTC

[servicemix-bundles] 02/03: [SM-5188] Create OSGi bundle for google-http-client 1.41.8

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicemix-bundles.git

commit cb7de27b48520672930a8b58bb51def7fe2e4fde
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Tue Jun 28 18:05:59 2022 +0200

    [SM-5188] Create OSGi bundle for google-http-client 1.41.8
---
 google-http-client-1.41.8/pom.xml | 123 ++++++++++++++++++++++++++++++++++++++
 pom.xml                           |   1 +
 2 files changed, 124 insertions(+)

diff --git a/google-http-client-1.41.8/pom.xml b/google-http-client-1.41.8/pom.xml
new file mode 100644
index 000000000..1c3e1fdcb
--- /dev/null
+++ b/google-http-client-1.41.8/pom.xml
@@ -0,0 +1,123 @@
+<?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>15</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.google-http-client</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.41.8_1-SNAPSHOT</version>
+    <name>Apache ServiceMix :: Bundles :: Google HTTP Client</name>
+    <description>
+        This OSGi bundle wraps google-http-client, google-oauth-client, google-http-client-gson jar files.
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=servicemix-bundles.git</url>
+  </scm>
+
+    <properties>
+	<pkgSourceVersion>1.41.8.1</pkgSourceVersion>
+        <servicemix.osgi.export>
+		com.google.api.client.auth.oauth*;version="1.34.0",
+		com.google.api.client.http*;version="1.41.8",
+		com.google.api.client.json*;version="1.41.8",
+		com.google.api.client.util*;version="1.41.8"
+        </servicemix.osgi.export>
+        <servicemix.osgi.import.pkg>
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.google.http-client</groupId>
+	    <artifactId>google-http-client</artifactId>
+            <version>1.41.8</version>
+        </dependency>
+	<dependency>
+	    <groupId>com.google.http-client</groupId>
+	    <artifactId>google-http-client-gson</artifactId>
+	    <version>1.41.8</version>
+	</dependency>
+	<dependency>
+	    <groupId>com.google.oauth-client</groupId>
+	    <artifactId>google-oauth-client</artifactId>
+	    <version>1.34.0</version>
+	</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>com.google.http-client:google-http-client</include>
+					<include>com.google.http-client:google-http-client-gson</include>
+					<include>com.google.oauth-client:google-oauth-client</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+					<artifact>com.google.http-client:google-http-client</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+					<artifact>com.google.http-client:google-http-client-gson</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+					<artifact>com.google.oauth-client:google-oauth-client</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/pom.xml b/pom.xml
index 1010726d7..666f93c07 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,6 +42,7 @@
 
     <modules>
       <module>atlassian-jira-client-5.2.4</module>
+      <module>google-http-client-1.41.8</module>
     </modules>
 
 </project>