This is an automated email from the ASF dual-hosted git repository.
ffang 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 dea8008 [SM-3920]create bundle for
org.glassfish.jaxb:jaxb-runtime:2.3.2
dea8008 is described below
commit dea80085ba334145967d5a374b94575153b9c08a
Author: Freeman Fang <[email protected]>
AuthorDate: Mon Jan 14 09:17:20 2019 +0800
[SM-3920]create bundle for org.glassfish.jaxb:jaxb-runtime:2.3.2
---
jaxb-runtime-2.3.2/pom.xml | 131 +++++++++++++++++++++
.../src/main/resources/OSGI-INF/bundle.info | 28 +++++
2 files changed, 159 insertions(+)
diff --git a/jaxb-runtime-2.3.2/pom.xml b/jaxb-runtime-2.3.2/pom.xml
new file mode 100644
index 0000000..6700a6d
--- /dev/null
+++ b/jaxb-runtime-2.3.2/pom.xml
@@ -0,0 +1,131 @@
+<?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-runtime</artifactId>
+ <packaging>bundle</packaging>
+ <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+ <version>2.3.2_1-SNAPSHOT</version>
+ <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>
+ <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>
+ <pkgVersion>2.3.2</pkgVersion>
+ <servicemix.osgi.import.pkg>
+ javax.activation;version="[1,2)",
+ javax.imageio,
+ javax.imageio.stream,
+ javax.lang.model,
+ javax.xml.bind;version="[2,3)",
+ javax.xml.bind.annotation;version="[2,3)",
+ javax.xml.bind.annotation.adapters;version="[2,3)",
+ javax.xml.bind.attachment;version="[2,3)",
+ javax.xml.bind.helpers;version="[2,3)",
+ javax.xml.datatype,
+ javax.xml.namespace,
+ javax.xml.parsers,
+ javax.xml.transform,
+ javax.xml.transform.dom,
+ javax.xml.transform.sax,
+ javax.xml.transform.stream,
+ javax.xml.validation,
+ javax.xml.xpath,
+ org.w3c.dom,
+ org.xml.sax,
+ org.xml.sax.ext,
+ org.xml.sax.helpers,
+ com.sun.xml.fastinfoset*;resolution:=optional,
+ javax.xml.stream*;resolution:=optional,
+ org.jvnet.fastinfoset*;resolution:=optional,
+ org.jvnet.staxex*;resolution:=optional,
+ com.sun.istack*;resolution:=optional,
+ com.sun.xml.txw2*;resolution:=optional
+ </servicemix.osgi.import.pkg>
+ <servicemix.osgi.export.pkg>
+ com.sun.xml.bind
+ </servicemix.osgi.export.pkg>
+ <pkgArtifactId>
+ jaxb-runtime
+ </pkgArtifactId>
+ <pkgGroupId>org.glassfish.jaxb</pkgGroupId>
+ </properties>
+</project>
+
+
diff --git a/jaxb-runtime-2.3.2/src/main/resources/OSGI-INF/bundle.info
b/jaxb-runtime-2.3.2/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..e0ed119
--- /dev/null
+++ b/jaxb-runtime-2.3.2/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