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 2020/06/29 19:42:43 UTC

[servicemix-bundles] branch master updated: [SM-4429] Create OSGi bundle for OpenSAML 4.0.1

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


The following commit(s) were added to refs/heads/master by this push:
     new 3a1f4e2  [SM-4429] Create OSGi bundle for OpenSAML 4.0.1
3a1f4e2 is described below

commit 3a1f4e2fe9a3eb3c9e6a23bee7d72943a92764af
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Mon Jun 29 21:42:04 2020 +0200

    [SM-4429] Create OSGi bundle for OpenSAML 4.0.1
---
 opensaml-4.0.1/pom.xml                             | 187 +++++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info        |  12 ++
 pom.xml                                            |   1 +
 3 files changed, 200 insertions(+)

diff --git a/opensaml-4.0.1/pom.xml b/opensaml-4.0.1/pom.xml
new file mode 100644
index 0000000..a425ccd
--- /dev/null
+++ b/opensaml-4.0.1/pom.xml
@@ -0,0 +1,187 @@
+<?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>14</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.opensaml</artifactId>
+    <version>4.0.1_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://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>
+        <pkgGroupId>org.opensaml</pkgGroupId>
+        <pkgArtifactId>opensaml</pkgArtifactId>
+        <pkgVersion>4.0.1</pkgVersion>
+        <servicemix.osgi.export>
+             org.opensaml*;version="${pkgVersion}";-split-package:=merge-first,
+             net.shibboleth.utilities*;version="${pkgVersion}";-split-package:=merge-first
+        </servicemix.osgi.export>
+        <servicemix.osgi.import.pkg>
+            javax.servlet;resolution:=optional,
+            javax.servlet.http;resolution:=optional,
+            org.bouncycastle*;resolution:=optional,
+            org.apache.velocity*;resolution:=optional,
+            org.joda.time*;version="[2.2,3)",
+            org.cryptacular*;resolution:=optional,
+            org.apache.http*;resolution:=optional,
+            com.beust.jcommander*;resolution:=optional,
+            javax.annotation;version="[1,4)",
+            com.google.common*;version="0.0.0",
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.private.pkg>
+            schema;-split-package:=merge-first,
+            templates;-split-package:=merge-first,
+            net.shibboleth.utilities.java.support*
+        </servicemix.osgi.private.pkg>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-core</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-profile-api</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-saml-api</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-xmlsec-api</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-security-impl</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-security-api</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-xmlsec-impl</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-xacml-impl</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-xacml-api</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-saml-impl</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-xacml-saml-impl</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-xacml-saml-api</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>opensaml-core</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}:*</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**/*.java</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <transformers>
+                              <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
+                            </transformers>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <repositories>
+      <repository>
+        <id>shibboleth</id>
+        <name>shibboleth</name>
+        <url>https://build.shibboleth.net/nexus/content/repositories/releases</url>
+      </repository>
+    </repositories>
+
+</project>
diff --git a/opensaml-4.0.1/src/main/resources/OSGI-INF/bundle.info b/opensaml-4.0.1/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..079b28b
--- /dev/null
+++ b/opensaml-4.0.1/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,12 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    OpenSAML is a set of open source Java libraries meant to support developers working with the Security Assertion
+    Markup Language (SAML). OpenSAML 1, supports SAML 1.0 and 1.1, but is not compatible with OpenSAML 2.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://spaces.internet2.edu/display/OpenSAML/Home\u001B[0m
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 4ae3fa0..4ca3c8c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,7 @@
         <module>spring-batch-infrastructure-3.0.10.RELEASE</module>
         <module>spring-batch-infrastructure-4.0.2.RELEASE</module>
         <module>pulsar-client-2.5.2</module>
+        <module>opensaml-4.0.1</module>
     </modules>
 
 </project>