Repository: servicemix-bundles Updated Branches: refs/heads/master c7a838e5d -> 8cc6d8fd1
[SM-3333] Create OSGi bundle for spring-xml 2.4.0.RELEASE Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/8cc6d8fd Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/8cc6d8fd Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/8cc6d8fd Branch: refs/heads/master Commit: 8cc6d8fd11454089636b16aef2ae620336cc1bd4 Parents: c7a838e Author: Jean-Baptiste Onofré <[email protected]> Authored: Tue May 2 11:12:12 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Tue May 2 11:12:12 2017 +0200 ---------------------------------------------------------------------- pom.xml | 1 + spring-xml-2.4.0.RELEASE/pom.xml | 130 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 13 ++ 3 files changed, 144 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8cc6d8fd/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3ad95c6..1bd04d7 100644 --- a/pom.xml +++ b/pom.xml @@ -105,6 +105,7 @@ <module>ognl-3.2.1</module> <module>okio-1.12.0</module> <module>cglib-3.2.5</module> + <module>spring-xml-2.4.0.RELEASE</module> </modules> </project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8cc6d8fd/spring-xml-2.4.0.RELEASE/pom.xml ---------------------------------------------------------------------- diff --git a/spring-xml-2.4.0.RELEASE/pom.xml b/spring-xml-2.4.0.RELEASE/pom.xml new file mode 100644 index 0000000..55546c5 --- /dev/null +++ b/spring-xml-2.4.0.RELEASE/pom.xml @@ -0,0 +1,130 @@ +<?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>13</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.spring-xml</artifactId> + <version>2.4.0.RELEASE_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + + <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> + </scm> + + <properties> + <pkgGroupId>org.springframework.ws</pkgGroupId> + <pkgArtifactId>spring-xml</pkgArtifactId> + <pkgVersion>2.4.0.RELEASE</pkgVersion> + <servicemix.osgi.export.pkg> + org.springframework.xml + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.xml, + javax.xml.namespace, + javax.xml.parsers, + javax.xml.stream, + javax.xml.transform, + javax.xml.transform.dom, + javax.xml.transform.sax, + javax.xml.transform.stream, + javax.xml.validation, + javax.xml.xpath, + org.apache.commons.logging;resolution:=optional, + org.apache.ws.commons.schema;resolution:=optional, + org.apache.ws.commons.schema.extensions;resolution:=optional, + org.apache.ws.commons.schema.resolver;resolution:=optional, + org.jaxen;resolution:=optional, + org.jaxen.dom;resolution:=optional, + org.springframework.beans;version="[4,5)";resolution:=optional, + org.springframework.beans.factory;version="[4,5)";resolution:=optional, + org.springframework.context;version="[4,5)";resolution:=optional, + org.springframework.core;version="[4,5)";resolution:=optional, + org.springframework.core.io;version="[4,5)";resolution:=optional, + org.springframework.util;version="[4,5)";resolution:=optional, + org.springframework.util.xml;version="[4,5)";resolution:=optional, + org.w3c.dom;resolution:=optional, + org.xml.sax;resolution:=optional, + org.xml.sax.ext;resolution:=optional, + org.xml.sax.helpers;resolution:=optional + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</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}:${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/8cc6d8fd/spring-xml-2.4.0.RELEASE/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/spring-xml-2.4.0.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-xml-2.4.0.RELEASE/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..265675c --- /dev/null +++ b/spring-xml-2.4.0.RELEASE/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,13 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Spring Web Services aims to facilitate contract-first SOAP service development, + allowing for the creation of flexible web services using one of the many ways + to manipulate XML payloads. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://projects.spring.io/spring-ws/\u001B[0m
