Repository: servicemix-bundles Updated Branches: refs/heads/master 3ea88284b -> b78880880
[SM-3860]create bundle for org.glassfish.jaxb:jaxb-xjc Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/b7888088 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/b7888088 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/b7888088 Branch: refs/heads/master Commit: b788808806c283bd6799439d8dc8207356a66c91 Parents: 3ea8828 Author: Freeman Fang <[email protected]> Authored: Wed Nov 21 16:01:35 2018 +0800 Committer: Freeman Fang <[email protected]> Committed: Wed Nov 21 16:01:35 2018 +0800 ---------------------------------------------------------------------- jaxb-xjc-2.3.1/pom.xml | 126 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 28 +++++ 2 files changed, 154 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b7888088/jaxb-xjc-2.3.1/pom.xml ---------------------------------------------------------------------- diff --git a/jaxb-xjc-2.3.1/pom.xml b/jaxb-xjc-2.3.1/pom.xml new file mode 100644 index 0000000..a9b3a99 --- /dev/null +++ b/jaxb-xjc-2.3.1/pom.xml @@ -0,0 +1,126 @@ +<?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/maven-v4_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. + --> + + <parent> + <artifactId>bundles-pom</artifactId> + <groupId>org.apache.servicemix.bundles</groupId> + <version>13</version> + <relativePath>../bundles-pom/pom.xml/pom.xml</relativePath> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.jaxb-xjc</artifactId> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <version>2.3.1_1-SNAPSHOT</version> + <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> + <build> + <plugins> + <plugin> + <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>*.properties</include> + </includes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <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> + <properties> + <servicemix.osgi.import.pkg> + !com.sun.codemodel*, + !com.sun.istack, + !com.sun.istack.tools*, + !com.sun.relaxng.javadt, + !com.sun.tools.xjc*, + !com.sun.xml.bind.serializer, + !com.sun.xml.bind.validator, + !com.sun.xml.bind.xmlschema, + !com.sun.xml.util, + !org.apache.xml.resolver*, + com.sun.org*;resolution:=optional, + javax.xml.stream*;resolution:=optional, + org.apache.tools.ant*;resolution:=optional, + com.sun.xml.txw2*;resolution:=optional, + com.sun.tools.rngom*;resolution:=optional, + com.sun.xml.dtdparser*;resolution:=optional, + com.sun.xml.xsom*;resolution:=optional, + javax.activation;version="[1,2)", + javax.xml.bind*;version="[2,3)", + * + </servicemix.osgi.import.pkg> + <servicemix.osgi.export.pkg> + com.sun.tools.xjc*;-split-package:=merge-first;-noimport:=true, + com.sun.codemodel*;-split-package:=merge-first;-noimport:=true, + com.sun.istack.tools*;-split-package:=merge-first;-noimport:=true + </servicemix.osgi.export.pkg> + <servicemix.osgi.failok>true</servicemix.osgi.failok> + <pkgVersion>2.3.1</pkgVersion> + <pkgArtifactId> + jaxb-xjc + </pkgArtifactId> + <pkgGroupId>org.glassfish.jaxb</pkgGroupId> + </properties> +</project> + + http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/b7888088/jaxb-xjc-2.3.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/jaxb-xjc-2.3.1/src/main/resources/OSGI-INF/bundle.info b/jaxb-xjc-2.3.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..e0ed119 --- /dev/null +++ b/jaxb-xjc-2.3.1/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,28 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + The goal of the JAXB project is to develop and evolve the code base for the Reference of JAXB, the Java Architecture + for XML Binding. The JAXB specification is developed through the Java Community Process following the process + described at jcp.org. This process involves an Expert Group with a lead that is responsible for delivering the + specification, a reference implementation (RI) and a Technology Compatibility Kit (TCK). The primary goal of an RI + is to support the development of the specification and to validate it. Specific RIs can have additional goals; + the JAXB RI is a production-quality implementation that is used directly in a number of products by Oracle and + other vendors. + + The JAXB expert group has wide industry participation with Oracle as the EG lead. The initial specification + (JAXB 1.0) was JSR-31 and was released in March 2003. + + The next versions of the spec (JAXB 2.0/2.1/2.2/2.3) are being developed as JSR-222; this release addresses a number + of additional requirements in the area, and increases the synergy between the JAXB and JAX-WS specifications. + + The supported standards are: + * JAXB 2.0/2.1/2.2/2.3 + * W3C XML Schema + * XML DTD + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://jaxb.java.net/\u001B[0m
