Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 0df663e68 -> 0873d5d31


[SM-3215] Create OSGi bundle for saaj-impl 1.3.28


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/0873d5d3
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/0873d5d3
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/0873d5d3

Branch: refs/heads/master
Commit: 0873d5d310df2f3386b0ef9875915ab20b335f37
Parents: 0df663e
Author: Jean-Baptiste Onofré <[email protected]>
Authored: Mon Jan 16 11:36:22 2017 +0100
Committer: Jean-Baptiste Onofré <[email protected]>
Committed: Mon Jan 16 11:36:22 2017 +0100

----------------------------------------------------------------------
 pom.xml                                         |   1 +
 saaj-impl-1.3.28/pom.xml                        | 187 +++++++++++++++++++
 .../services/javax.xml.soap.MessageFactory      |   1 +
 .../services/javax.xml.soap.MetaFactory         |   1 +
 .../javax.xml.soap.SOAPConnectionFactory        |   1 +
 .../services/javax.xml.soap.SOAPFactory         |   1 +
 .../src/main/resources/OSGI-INF/bundle.info     |  11 ++
 7 files changed, 203 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0873d5d3/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a9a733e..0addfb0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,6 +68,7 @@
         <module>spring-webmvc-3.2.18.RELEASE</module>
         <module>spring-webmvc-portlet-3.2.18.RELEASE</module>
         <module>aws-java-sdk-1.11.78</module>
+        <module>saaj-impl-1.3.28</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0873d5d3/saaj-impl-1.3.28/pom.xml
----------------------------------------------------------------------
diff --git a/saaj-impl-1.3.28/pom.xml b/saaj-impl-1.3.28/pom.xml
new file mode 100644
index 0000000..33bb4ca
--- /dev/null
+++ b/saaj-impl-1.3.28/pom.xml
@@ -0,0 +1,187 @@
+<?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.saaj-impl</artifactId>
+    <version>1.3.28_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.sun.xml.messaging.saaj</pkgGroupId>
+        <pkgArtifactId>saaj-impl</pkgArtifactId>
+        <pkgVersion>1.3.28</pkgVersion>
+        <servicemix.osgi.failok>true</servicemix.osgi.failok>
+        <servicemix.osgi.export.pkg>
+            com.sun.xml.messaging.saaj
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            org.jvnet.mimepull*;resolution:=optional,
+            javax.xml.soap,
+            javax.xml.transform.stax*;resolution:=optional,
+            javax.activation,
+            javax.imageio,
+            javax.imageio.stream,
+            javax.xml.datatype,
+            javax.xml.namespace,
+            javax.xml.parsers,
+            javax.xml.stream,
+            javax.xml.stream.events,
+            javax.xml.stream.util,
+            javax.xml.transform,
+            javax.xml.transform.dom,
+            javax.xml.transform.sax,
+            javax.xml.transform.stream,
+            javax.xml.validation,
+            org.w3c.dom,
+            org.w3c.dom.events,
+            org.w3c.dom.html,
+            org.w3c.dom.ls,
+            org.w3c.dom.ranges,
+            org.w3c.dom.traversal,
+            org.xml.sax,
+            org.xml.sax.ext,
+            org.xml.sax.helpers,
+            org.jvnet.staxex*
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.private.pkg>
+            META-INF;-split-package:=merge-first,
+            META-INF.services;-split-package:=first,
+            
com.sun.org.apache.xerces.internal.dom*;-split-package:=merge-first,
+            
com.sun.org.apache.xerces.internal.jaxp*;-split-package:=merge-first,
+            
com.sun.org.apache.xerces.internal.util*;-split-package:=merge-first,
+            
com.sun.org.apache.xerces.internal.impl*;-split-package:=merge-first,
+            
com.sun.org.apache.xerces.internal.xni*;-split-package:=merge-first,
+            
com.sun.org.apache.xerces.internal.parsers*;-split-package:=merge-first,
+            com.sun.org.apache.xerces.internal.xs*;-split-package:=merge-first,
+            com.sun.org.apache.xml.internal.serialize,
+            com.sun.xml.internal.stream*,
+            com.sun.org.apache.xml.internal.resolver*,
+            com.sun.org.apache.xerces.internal.xinclude,
+            com.sun.org.apache.xerces.internal.xpointer
+        </servicemix.osgi.private.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jvnet.staxex</groupId>
+            <artifactId>stax-ex</artifactId>
+            <version>1.7.4</version>
+            <optional>false</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.parsers</groupId>
+            <artifactId>jaxp-ri</artifactId>
+            <version>1.4.5</version>
+            <optional>true</optional>
+            <scope>provided</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.parsers</groupId>
+                    <artifactId>jaxp-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.servicemix.specs</groupId>
+            <artifactId>org.apache.servicemix.specs.saaj-api-1.3</artifactId>
+            <version>2.2.0</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </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/0873d5d3/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
----------------------------------------------------------------------
diff --git 
a/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
new file mode 100644
index 0000000..62ff39b
--- /dev/null
+++ 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
@@ -0,0 +1 @@
+com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0873d5d3/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
----------------------------------------------------------------------
diff --git 
a/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
new file mode 100644
index 0000000..a09cd2b
--- /dev/null
+++ 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
@@ -0,0 +1 @@
+com.sun.xml.messaging.saaj.soap.SAAJMetaFactoryImpl

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0873d5d3/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory
----------------------------------------------------------------------
diff --git 
a/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory
 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory
new file mode 100644
index 0000000..0b7aac8
--- /dev/null
+++ 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory
@@ -0,0 +1 @@
+com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnectionFactory

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0873d5d3/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
----------------------------------------------------------------------
diff --git 
a/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
new file mode 100644
index 0000000..30accae
--- /dev/null
+++ 
b/saaj-impl-1.3.28/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
@@ -0,0 +1 @@
+com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0873d5d3/saaj-impl-1.3.28/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/saaj-impl-1.3.28/src/main/resources/OSGI-INF/bundle.info 
b/saaj-impl-1.3.28/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..0cd523a
--- /dev/null
+++ b/saaj-impl-1.3.28/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,11 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    SAAJ (SOAP with Attachments API for Java) allows the support of attachment 
to the SOAP protocol.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://java.net/projects/saaj/\u001B[0m

Reply via email to