Repository: servicemix-bundles Updated Branches: refs/heads/master bb9af255c -> 25d3e97d1
[SM-3361] Create OSGi bundles for Mchange Commons Java 0.2.11 Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/25d3e97d Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/25d3e97d Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/25d3e97d Branch: refs/heads/master Commit: 25d3e97d140169b18f95f4bef1a6ba52f6067004 Parents: bb9af25 Author: Andrea Cosentino <[email protected]> Authored: Fri May 26 09:36:58 2017 +0200 Committer: Andrea Cosentino <[email protected]> Committed: Fri May 26 09:36:58 2017 +0200 ---------------------------------------------------------------------- mchange-commons-java-0.2.11/pom.xml | 117 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 13 +++ pom.xml | 1 + 3 files changed, 131 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/25d3e97d/mchange-commons-java-0.2.11/pom.xml ---------------------------------------------------------------------- diff --git a/mchange-commons-java-0.2.11/pom.xml b/mchange-commons-java-0.2.11/pom.xml new file mode 100644 index 0000000..18ea090 --- /dev/null +++ b/mchange-commons-java-0.2.11/pom.xml @@ -0,0 +1,117 @@ +<?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.mchange-commons-java</artifactId> + <version>0.2.11_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.mchange</pkgGroupId> + <pkgArtifactId>mchange-commons-java</pkgArtifactId> + <pkgVersion>0.2.11</pkgVersion> + <servicemix.osgi.export.pkg> + com.mchange + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.management, + javax.naming, + javax.naming.spi, + javax.sql, + javax.swing*;resolution:=optional, + javax.xml.parsers, + javax.xml.transform*;resolution:=optional, + com.typesafe.config;resolution:=optional, + org.apache.log4j;resolution:=optional, + org.slf4j;resolution:=optional, + org.w3c.dom, + org.xml.sax + </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/25d3e97d/mchange-commons-java-0.2.11/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/mchange-commons-java-0.2.11/src/main/resources/OSGI-INF/bundle.info b/mchange-commons-java-0.2.11/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..7162fac --- /dev/null +++ b/mchange-commons-java-0.2.11/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 + c3p0 is an easy-to-use library for augmenting traditional (DriverManager-based) JDBC drivers with JNDI-bindable + DataSources, including DataSources that implement Connection and Statement Pooling, as described by the jdbc3 spec + and jdbc2 std extension. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://sourceforge.net/projects/c3p0/\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/25d3e97d/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 95cf803..99a5d5c 100644 --- a/pom.xml +++ b/pom.xml @@ -68,6 +68,7 @@ <module>docker-java-3.0.9</module> <module>docker-java-3.0.10</module> <module>azure-storage-5.1.1</module> + <module>mchange-commons-java-0.2.11</module> </modules> </project>
