Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
META-INF.maven.com.sun.xml.ws.rt.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2021 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>2.3.5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.sun.xml.ws</groupId>
<artifactId>rt</artifactId>
<version>2.3.5</version>
<name>JAX-WS RI Runtime (rt)</name>
<description>JAX-WS Reference Implementation Runtime</description>
<properties>
<spotbugs.exclude>${project.basedir}/exclude.xml</spotbugs.exclude>
<argLine>
--add-opens java.base/java.lang=com.sun.xml.ws.rt
--add-opens com.sun.xml.ws.rt/com.sun.xml.ws.client.test=com.sun.xml.bind
</argLine>
</properties>
<dependencies>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>policy</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.ha</groupId>
<artifactId>ha-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.external</groupId>
<artifactId>management-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.gmbal</groupId>
<artifactId>gmbal-api-only</artifactId>
</dependency>
<dependency>
<groupId>org.jvnet.staxex</groupId>
<artifactId>stax-ex</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.stream.buffer</groupId>
<artifactId>streambuffer</artifactId>
</dependency>
<dependency>
<groupId>org.jvnet.mimepull</groupId>
<artifactId>mimepull</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.fastinfoset</groupId>
<artifactId>FastInfoset</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!-- we need API for compile and impl for runtime
to make usage easy, let's just depend on the impl -->
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
</dependency>
<!-- Runtime dependencies -->
<dependency>
<groupId>com.sun.xml.messaging.saaj</groupId>
<artifactId>saaj-impl</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<artifactId>woodstox-core</artifactId>
<groupId>com.fasterxml.woodstox</groupId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>stax2-api</artifactId>
<scope>runtime</scope>
</dependency>
<!-- To be removed after end of support for JDK 8 -->
<dependency>
<groupId>com.sun.org.apache.xml.internal</groupId>
<artifactId>resolver</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/version</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-asm</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<type>jar</type>
<classifier>sources</classifier>
<version>${asm.version}</version>
</artifactItem>
</artifactItems>
<includes>org/objectweb/asm/**/*.java</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<!-- adds reads for xmlresolver -->
<compilerArgs>
<arg>--add-reads</arg>
<arg>com.sun.xml.ws.rt=ALL-UNNAMED</arg>
</compilerArgs>
</configuration>
</execution>
<execution>
<id>default-compile-mr-9</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compileSourceRoots>
<compileSourceRoot>${project.basedir}/src/main/java-mr/9</compileSourceRoot>
</compileSourceRoots>
<outputDirectory>${project.build.outputDirectory}/META-INF/versions/9</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.sun.wts.tools.ant</groupId>
<artifactId>package-rename-task</artifactId>
<executions>
<execution>
<id>repackage-asm</id>
<goals>
<goal>rename</goal>
</goals>
<configuration>
<patterns>
<org.objectweb.asm>com.sun.xml.ws.org.objectweb.asm</org.objectweb.asm>
</patterns>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.sun.istack</groupId>
<artifactId>istack-commons-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-property</id>
<goals>
<goal>enforce</goal>
</goals>
<phase>validate</phase>
<configuration>
<rules>
<requireProperty>
<property>jaxb-api.version</property>
<message>Property not imported!</message>
</requireProperty>
<requireProperty>
<property>stax-ex.version</property>
<message>Property not imported!</message>
</requireProperty>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- tests are run using failsafe to properly
use MR jar produced here -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
<!-- exclude APIs as implementations are needed on the path -->
<classpathDependencyExcludes>jakarta.activation:jakarta.activation-api,jakarta.mail:jakarta.mail-api</classpathDependencyExcludes>
<systemProperties>
<javax.xml.ws.spi.Provider>com.sun.xml.ws.spi.ProviderImpl</javax.xml.ws.spi.Provider>
</systemProperties>
<!-- SAAJMessageWrapperTest/com.sun.xml.ws.model.Injector -->
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<configuration>
<archive>
<manifest>
<addDefaultEntries>false</addDefaultEntries>
</manifest>
<manifestEntries>
<Multi-Release>true</Multi-Release>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-mr-resource</id>
<phase>prepare-package</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${project.basedir}/src/main/java-mr/9</directory>
<targetPath>META-INF/versions/9</targetPath>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Multi-Release>true</Multi-Release>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>--add-reads com.sun.xml.ws.rt=ALL-UNNAMED</additionalOptions>
<tags>
<tag>
<name>exclude</name>
<placement>X</placement>
</tag>
<tag>
<name>BP</name>
<placement>X</placement>
</tag>
</tags>
</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>bundle</goal>
</goals>
<configuration>
<instructions>
<Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
<Export-Package>
com.oracle.webservices.api.message;version=${project.version},
com.sun.xml.ws.addressing.model;version=${project.version},
com.sun.xml.ws.addressing.policy;version=${project.version},
com.sun.xml.ws.addressing.v200408;version=${project.version},
com.sun.xml.ws.api.addressing;version=${project.version},
com.sun.xml.ws.api.client;version=${project.version},
com.sun.xml.ws.api.config.management.policy;version=${project.version},
com.sun.xml.ws.api.databinding;version=${project.version},
com.sun.xml.ws.api.fastinfoset;version=${project.version},
com.sun.xml.ws.api.ha;version=${project.version},
com.sun.xml.ws.api.handler;version=${project.version},
com.sun.xml.ws.api.message.saaj;version=${project.version},
com.sun.xml.ws.api.message.stream;version=${project.version},
com.sun.xml.ws.api.model.soap;version=${project.version},
com.sun.xml.ws.api.model.wsdl;version=${project.version},
com.sun.xml.ws.api.pipe.helper;version=${project.version},
com.sun.xml.ws.api.policy.subject;version=${project.version},
com.sun.xml.ws.api.server;version=${project.version},
com.sun.xml.ws.api.streaming;version=${project.version},
com.sun.xml.ws.api.wsdl.parser;version=${project.version},
com.sun.xml.ws.api.wsdl.writer;version=${project.version},
com.sun.xml.ws.assembler.dev;version=${project.version},
com.sun.xml.ws.assembler.jaxws;version=${project.version},
com.sun.xml.ws.binding;version=${project.version},
com.sun.xml.ws.client.dispatch;version=${project.version},
com.sun.xml.ws.client.sei;version=${project.version},
com.sun.xml.ws.commons.xmlutil;version=${project.version},
com.sun.xml.ws.config.management.policy;version=${project.version},
com.sun.xml.ws.config.metro.dev;version=${project.version},
com.sun.xml.ws.config.metro.util;version=${project.version},
com.sun.xml.ws.db.glassfish;version=${project.version},
com.sun.xml.ws.developer;version=${project.version},
com.sun.xml.ws.dump;version=${project.version},
com.sun.xml.ws.encoding.policy;version=${project.version},
com.sun.xml.ws.encoding.soap.streaming;version=${project.version},
com.sun.xml.ws.encoding.xml;version=${project.version},
com.sun.xml.ws.fault;version=${project.version},
com.sun.xml.ws.handler;version=${project.version},
com.sun.xml.ws.message.jaxb;version=${project.version},
com.sun.xml.ws.message.saaj;version=${project.version},
com.sun.xml.ws.message.source;version=${project.version},
com.sun.xml.ws.message.stream;version=${project.version},
com.sun.xml.ws.model.soap;version=${project.version},
com.sun.xml.ws.model.wsdl;version=${project.version},
com.sun.xml.ws.policy.jaxws.spi;version=${project.version},
com.sun.xml.ws.protocol.soap;version=${project.version},
com.sun.xml.ws.protocol.xml;version=${project.version},
com.sun.xml.ws.runtime.config;version=${project.version},
com.sun.xml.ws.server.provider;version=${project.version},
com.sun.xml.ws.server.sei;version=${project.version},
com.sun.xml.ws.spi.db;version=${project.version},
com.sun.xml.ws.streaming;version=${project.version},
com.sun.xml.ws.transport.http.client;version=${project.version},
com.sun.xml.ws.transport.http.server;version=${project.version},
com.sun.xml.ws.util.exception;version=${project.version},
com.sun.xml.ws.util.pipe;version=${project.version},
com.sun.xml.ws.util.xml;version=${project.version},
com.sun.xml.ws.wsdl.parser;version=${project.version},
com.sun.xml.ws.wsdl.writer.document.http;version=${project.version},
com.sun.xml.ws.wsdl.writer.document.soap;version=${project.version},
com.sun.xml.ws.wsdl.writer.document.soap12;version=${project.version},
com.sun.xml.ws.wsdl.writer.document.xsd;version=${project.version}
</Export-Package>
<Import-Package>
com.sun.istack;version=${jaxb-impl.version},
com.sun.istack.localization;version=${jaxb-impl.version},
com.sun.istack.logging;version=${jaxb-impl.version},
com.sun.net.httpserver,
com.sun.org.apache.xml.internal.resolver,
com.sun.org.apache.xml.internal.resolver.tools,
com.sun.xml.bind;version=${jaxb-impl.version},
com.sun.xml.bind.api;version=${jaxb-impl.version},
com.sun.xml.bind.api.impl;version=${jaxb-impl.version},
com.sun.xml.bind.marshaller;version=${jaxb-impl.version},
com.sun.xml.bind.unmarshaller;version=${jaxb-impl.version},
com.sun.xml.bind.util;version=${jaxb-impl.version},
com.sun.xml.bind.v2;version=${jaxb-impl.version},
com.sun.xml.bind.v2.model.annotation;version=${jaxb-impl.version},
com.sun.xml.bind.v2.model.nav;version=${jaxb-impl.version},
com.sun.xml.bind.v2.model.runtime;version=${jaxb-impl.version},
com.sun.xml.bind.v2.runtime;version=${jaxb-impl.version},
com.sun.xml.bind.v2.runtime.unmarshaller;version=${jaxb-impl.version},
com.sun.xml.bind.v2.schemagen;version=${jaxb-impl.version},
com.sun.xml.bind.v2.schemagen.xmlschema;version=${jaxb-impl.version},
com.sun.xml.stream.buffer;version=${streambuffer.version},
com.sun.xml.stream.buffer.sax;version=${streambuffer.version},
com.sun.xml.stream.buffer.stax;version=${streambuffer.version},
com.sun.xml.txw2;version=${jaxb-impl.version},
com.sun.xml.txw2.annotation;version=${jaxb-impl.version},
com.sun.xml.txw2.output;version=${jaxb-impl.version},
com.sun.xml.ws.policy;version=${policy.version},
com.sun.xml.ws.policy.privateutil;version=${policy.version},
com.sun.xml.ws.policy.sourcemodel;version=${policy.version},
com.sun.xml.ws.policy.sourcemodel.wspolicy;version=${policy.version},
com.sun.xml.ws.policy.spi;version=${policy.version},
com.sun.xml.ws.policy.subject;version=${policy.version},
javax.activation,
javax.annotation,
javax.imageio,
javax.imageio.stream,
javax.jws,
javax.jws.soap,
javax.management,
javax.net.ssl,
javax.xml.bind;version=${jaxb-api.version},
javax.xml.bind.annotation;version=${jaxb-api.version},
javax.xml.bind.annotation.adapters;version=${jaxb-api.version},
javax.xml.bind.attachment;version=${jaxb-api.version},
javax.xml.bind.util;version=${jaxb-api.version},
javax.xml.namespace,
javax.xml.parsers,
javax.xml.soap,
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,
javax.xml.ws;version=${jaxws-api.osgiVersion},
javax.xml.ws.handler;version=${jaxws-api.osgiVersion},
javax.xml.ws.handler.soap;version=${jaxws-api.osgiVersion},
javax.xml.ws.http;version=${jaxws-api.osgiVersion},
javax.xml.ws.soap;version=${jaxws-api.osgiVersion},
javax.xml.ws.spi;version=${jaxws-api.osgiVersion},
javax.xml.ws.spi.http;version=${jaxws-api.osgiVersion},
javax.xml.ws.wsaddressing;version=${jaxws-api.osgiVersion},
org.glassfish.external.amx;version=${management-api.version},
org.glassfish.gmbal;version=${gmbal-api.version},
org.jvnet.mimepull;version=${mimepull.version},
org.jvnet.staxex;version=${stax-ex.version},
org.objectweb.asm;version=${asm-all.version},
org.w3c.dom,
org.w3c.dom.ls,
org.xml.sax,
org.xml.sax.ext,
org.xml.sax.helpers
</Import-Package>
</instructions>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</project>