jaxws-async-client-transport
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-async-client-transport</artifactId> <version>4.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at http://www.eclipse.org/org/documents/edl-v10.php. SPDX-License-Identifier: BSD-3-Clause --> <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> <groupId>com.sun.xml.ws</groupId> <artifactId>project</artifactId> <version>4.0.3</version> <relativePath>../../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-async-client-transport</artifactId> <version>4.0.3</version> <name>JAX-WS RI Async-Client-Transport Implementation</name> <description>Implementation of Async-Client-Transport for JAX-WS RI</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jaxws-rt</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <executions> <execution> <id>osgi-bundle</id> <phase>prepare-package</phase> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy> <Require-Capability><![CDATA[ osgi.extender;filter:="(&(osgi.extender=osgi.serviceloader.registrar) (version>=1.0.0)(!(version>=2.0.0)))";resolution:=optional ]]> </Require-Capability> <Provide-Capability><![CDATA[ osgi.serviceloader; osgi.serviceloader="com.sun.xml.ws.api.pipe.TransportTubeFactory" ]]> </Provide-Capability> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>