Repository: servicemix-bundles Updated Branches: refs/heads/master b6d643e62 -> 5a87d3338
SM-2921 - Create OSGi bundle for spring-integration-core 4.2.5.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/5a87d333 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/5a87d333 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/5a87d333 Branch: refs/heads/master Commit: 5a87d33383dc3a4740bc939d92135ea37786d634 Parents: b6d643e Author: Jean-Baptiste Onofré <[email protected]> Authored: Thu Mar 24 14:50:13 2016 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Thu Mar 24 14:50:13 2016 +0100 ---------------------------------------------------------------------- pom.xml | 1 + spring-integration-core-4.2.5.RELEASE/pom.xml | 120 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 16 +++ 3 files changed, 137 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5a87d333/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6352f92..331d5c1 100644 --- a/pom.xml +++ b/pom.xml @@ -109,6 +109,7 @@ <module>spring-websocket-4.2.5.RELEASE</module> <module>spring-security-config-4.0.4.RELEASE</module> <module>spring-security-core-4.0.4.RELEASE</module> + <module>spring-integration-core-4.2.5.RELEASE</module> </modules> </project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/5a87d333/spring-integration-core-4.2.5.RELEASE/pom.xml ---------------------------------------------------------------------- diff --git a/spring-integration-core-4.2.5.RELEASE/pom.xml b/spring-integration-core-4.2.5.RELEASE/pom.xml new file mode 100644 index 0000000..ac29c63 --- /dev/null +++ b/spring-integration-core-4.2.5.RELEASE/pom.xml @@ -0,0 +1,120 @@ +<?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.spring-integration-core</artifactId> + <version>4.2.5.RELEASE_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>org.springframework.integration</pkgGroupId> + <pkgArtifactId>spring-integration-core</pkgArtifactId> + <pkgVersion>4.2.5.RELEASE</pkgVersion> + <servicemix.osgi.export.pkg> + org.springframework.integration + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + com.esotericsoftware.kryo;resolution:=optional, + com.esotericsoftware.kryo.io;resolution:=optional, + com.esotericsoftware.kryo.pool;resolution:=optional, + com.fasterxml*, + com.jayway*;resolution:=optional, + javax.xml.parsers, + org.aopalliance*, + org.apache.commons.logging;resolution:=optional, + org.boon.json;resolution:=optional, + org.codehaus.jackson*, + org.objenesis.strategy;resolution:=optional, + org.slf4j;resolution:=optional, + org.springframework*, + org.w3c.dom, + reactor*;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> + <includes> + <include>META-INF/*</include> + </includes> + </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/5a87d333/spring-integration-core-4.2.5.RELEASE/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/spring-integration-core-4.2.5.RELEASE/src/main/resources/OSGI-INF/bundle.info b/spring-integration-core-4.2.5.RELEASE/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..526acee --- /dev/null +++ b/spring-integration-core-4.2.5.RELEASE/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,16 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Extends the Spring programming model to support the well-known Enterprise Integration Patterns. + Spring Integration enables lightweight messaging within Spring-based applications and supports integration with external systems + via declarative adapters. + Those adapters provide a higher-level of abstraction over Spring's support for remoting, messaging, and scheduling. + Spring Integration's primary goal is to provide a simple model for building enterprise integration solutions + while maintaining the separation of concerns that is essential for producing maintainable, testable code. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://projects.spring.io/spring-integration/\u001B[0m
