org.apache.servicemix.bundles.saaj-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.saaj-impl</artifactId> <version>1.5.1_1</version> </dependency>
<?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"> <parent> <artifactId>bundles-pom</artifactId> <groupId>org.apache.servicemix.bundles</groupId> <version>13</version> <relativePath>../bundles-pom/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.saaj-impl</artifactId> <packaging>bundle</packaging> <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> <version>1.5.1_1</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> <tag>org.apache.servicemix.bundles.saaj-impl-1.5.1_1</tag> <url>https://gitbox.apache.org/repos/asf?p=servicemix-bundles.git</url> </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> <excludes> <exclude>**</exclude> </excludes> </filter> </filters> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> <createDependencyReducedPom>true</createDependencyReducedPom> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> <version>1.7.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.xml.stream</groupId> <artifactId>stax-api</artifactId> <version>1.0-2</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>2.3.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.activation</groupId> <artifactId>jakarta.activation-api</artifactId> <version>1.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.xml.soap</groupId> <artifactId>jakarta.xml.soap-api</artifactId> <version>1.4.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jvnet.mimepull</groupId> <artifactId>mimepull</artifactId> <version>1.9.11</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.servicemix.specs</groupId> <artifactId>org.apache.servicemix.specs.saaj-api-1.3</artifactId> <version>2.2.0</version> <scope>compile</scope> </dependency> </dependencies> <properties> <pkgVersion>1.5.1</pkgVersion> <servicemix.osgi.import.pkg>org.jvnet.mimepull*;resolution:=optional, javax.xml.soap;version="[1.3,2)", 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.export.pkg>com.sun.xml.messaging.saaj</servicemix.osgi.export.pkg> <pkgArtifactId>saaj-impl</pkgArtifactId> <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> <servicemix.osgi.failok>true</servicemix.osgi.failok> <pkgGroupId>com.sun.xml.messaging.saaj</pkgGroupId> </properties> </project>