jaxws-eclipselink-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-eclipselink-plugin</artifactId> <version>4.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012, 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-eclipselink-plugin</artifactId> <version>4.0.3</version> <name>JAX-WS RI Eclipselink Plugin</name> <description>Pluggable databinding module employing Eclipselink JAXB (MOXy)</description> <properties> <spotbugs.exclude>${project.basedir}/exclude.xml</spotbugs.exclude> </properties> <dependencies> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>org.eclipse.persistence.moxy</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jaxws-rt</artifactId> </dependency> <dependency> <groupId>jakarta.mail</groupId> <artifactId>jakarta.mail-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.angus</groupId> <artifactId>angus-mail</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-xjc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- to make sure that plugin's classes are at the end of the cp otherwise testHelloEchoNoMode(com.sun.xml.ws.jaxbri.JAXBRIBasicTest) will fail as it requires specific order of jars on the cp --> <classesDirectory>/non/existing/directory</classesDirectory> <additionalClasspathElements> <additionalClasspathElement>${project.build.outputDirectory}</additionalClasspathElement> </additionalClasspathElements> <forkCount>1</forkCount> <testFailureIgnore>${ignore.failing.tests}</testFailureIgnore> </configuration> </plugin> <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> <Import-Package> org.eclipse.persistence.*;version=!, * </Import-Package> <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.spi.db.BindingContextFactory" ]]> </Provide-Capability> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>