<?xml version="1.0" encoding="UTF-8"?>
<!--

    DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

    Copyright (c) 2012-2018 Oracle and/or its affiliates. All rights reserved.

    The contents of this file are subject to the terms of either the GNU
    General Public License Version 2 only ("GPL") or the Common Development
    and Distribution License("CDDL") (collectively, the "License").  You
    may not use this file except in compliance with the License.  You can
    obtain a copy of the License at
    https://oss.oracle.com/licenses/CDDL+GPL-1.1
    or LICENSE.txt.  See the License for the specific
    language governing permissions and limitations under the License.

    When distributing the software, include this License Header Notice in each
    file and include the License file at LICENSE.txt.

    GPL Classpath Exception:
    Oracle designates this particular file as subject to the "Classpath"
    exception as provided by Oracle in the GPL Version 2 section of the License
    file that accompanied this code.

    Modifications:
    If applicable, add the following below the License Header, with the fields
    enclosed by brackets [] replaced by your own identifying information:
    "Portions Copyright [year] [name of copyright owner]"

    Contributor(s):
    If you wish your version of this file to be governed by only the CDDL or
    only the GPL Version 2, indicate your decision by adding "[Contributor]
    elects to include this software in this distribution under the [CDDL or GPL
    Version 2] license."  If you don't indicate a single choice of license, a
    recipient has the option to distribute your version of this file under
    either the CDDL, the GPL Version 2 or to extend the choice of license to
    its licensees as provided above.  However, if you add GPL Version 2 code
    and therefore, elected the GPL Version 2 license, then the option applies
    only if the new code is made subject to such option by the copyright
    holder.

-->

<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.1</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.sun.xml.ws</groupId>
    <artifactId>rt</artifactId>
    <version>2.3.1</version>

    <name>JAX-WS RI Runtime (rt)</name>
    <description>JAX-WS Reference Implementation Runtime</description>

    <properties>
        <findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude>
    </properties>

    <dependencies>
        <dependency>
            <groupId>javax.annotation</groupId>
            <artifactId>javax.annotation-api</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.activation</groupId>
            <artifactId>javax.activation-api</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.annotation</groupId>
            <artifactId>javax.annotation-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.ws</groupId>
            <artifactId>policy</artifactId>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jaxb</groupId>
            <artifactId>jaxb-runtime</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>
            <artifactId>woodstox-core</artifactId>
            <groupId>com.fasterxml.woodstox</groupId>
        </dependency>
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>stax2-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.sun.org.apache.xml.internal</groupId>
            <artifactId>resolver</artifactId>
        </dependency>
        <dependency>
            <groupId>org.glassfish.ha</groupId>
            <artifactId>ha-api</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>${mail.version}</version>
            <scope>test</scope>
            <exclusions>
                <!-- part of JDK 6+ -->
                <exclusion>
                    <groupId>javax.activation</groupId>
                    <artifactId>activation</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.messaging.saaj</groupId>
            <artifactId>saaj-impl</artifactId>
        </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>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>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>process-sources</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                            <excludeArtifactIds>provider,resolver,javax.activation</excludeArtifactIds>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <executions>
                    <execution>
                        <id>default-compile</id>
                        <configuration>
                            <includes>
                                <include>**/module-info.java</include>
                            </includes>
                            <compilerArgs>
                                <arg>--upgrade-module-path</arg>
                                <arg>${project.build.directory}/lib/jaxws-api-${jaxws-api.version}.jar</arg>
                                <arg>--module-path</arg>
                                <arg>${project.build.directory}/lib:${project.build.directory}/classes</arg>

                                <!--TODO automatic module names based on jar filename -->
                                <arg>--add-modules</arg>
                                <arg>gmbal.api.only</arg>
                                <arg>--add-reads</arg>
                                <arg>com.sun.xml.ws=gmbal.api.only</arg>

                                <!--Need this to compile with 9 api (all classes are recompiled with 8 by base-compile execution)-->
                                <!--resolver specific code for 9 is put in mr-jar/9 to avoid this on 9-->
                                <!--<arg>&#45;&#45;add-exports</arg>
                                <arg>java.xml/com.sun.org.apache.xml.internal.resolver=com.sun.xml.ws</arg>
                                <arg>&#45;&#45;add-exports</arg>
                                <arg>java.xml/com.sun.org.apache.xml.internal.resolver.tools=com.sun.xml.ws</arg>-->

                                <!--<arg>&#45;&#45;limit-modules</arg>
                                <arg>java.activation,java.xml,java.xml.bind,com.sun.xml.ws,java.xml.ws,com.sun.xml.bind,com.sun.xml.messaging.saaj,com.sun.xml.ws.policy,com.sun.istack.runtime,com.sun.xml.txw2,org.jvnet.staxex,org.jvnet.mimepull,com.sun.xml.streambuffer,javax.jws,java.annotation,java.desktop,java.logging,java.management,jdk.httpserver</arg>-->
                            </compilerArgs>
                        </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>
                    <forkCount>1</forkCount>
                    <reuseForks>false</reuseForks>
                    <argLine>
                        --add-exports java.xml/com.sun.org.apache.xml.internal.resolver=ALL-UNNAMED
                        --add-exports java.xml/com.sun.org.apache.xml.internal.resolver.tools=ALL-UNNAMED
                        --add-modules java.xml.bind
                        --upgrade-module-path ${endorsed.dir}
                        --module-path ${project.build.directory}/lib
                    </argLine>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.8</version>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.ant</groupId>
                        <artifactId>ant</artifactId>
                        <version>${ant.version}</version>
                    </dependency>
                </dependencies>
                <executions>
                    <execution>
                        <id>compile-java9</id>
                        <phase>compile</phase>
                        <configuration>
                            <tasks>
                                <mkdir dir="${project.build.outputDirectory}/META-INF/versions/${upper.java.level}" />
                                <echo>${project.build.directory}/lib</echo>
                                <javac srcdir="${mrjar.sourceDirectory}"
                                       destdir="${project.build.outputDirectory}/META-INF/versions/${upper.java.level}"
                                       includeantruntime="false"
                                       release="${upper.java.level}">
                                    <classpath>
                                        <fileset dir="${project.build.directory}/lib">
                                            <include name="**/*.jar"/>
                                        </fileset>
                                        <pathelement location="${project.build.directory}/classes" />
                                    </classpath>
                                </javac>
                            </tasks>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>update-source-jar</id>
                        <phase>verify</phase>
                        <configuration>
                            <tasks>
                                <jar destfile="${project.build.directory}/jaxb-xjc-${project.version}-sources.jar" update="true">
                                    <zipfileset prefix="META-INF/versions" dir="${mrjar.sourceDirectory}"/>
                                </jar>
                            </tasks>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <executions>
                    <execution>
                        <id>default-jar</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                        <configuration>
                            <archive>
                                <manifestEntries>
                                    <Multi-Release>true</Multi-Release>
                                </manifestEntries>
                            </archive>
                        </configuration>
                    </execution>
                    <execution>
                        <id>package-test-jar</id>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <debug>true</debug>
                    <additionalJOptions>
                        <additionalJOption>--upgrade-module-path</additionalJOption>
                        <additionalJOption>${project.build.directory}/lib/jaxws-api-${jaxws-api.version}.jar</additionalJOption>
                        <additionalJOption>--module-path</additionalJOption>
                        <additionalJOption>${project.build.directory}/lib:${project.build.directory}/classes</additionalJOption>
                        <additionalJOption>--add-reads</additionalJOption>
                        <additionalJOption>com.sun.xml.ws=ALL-UNNAMED</additionalJOption>
                        <additionalparam>-Xdoclint:none</additionalparam>
                    </additionalJOptions>
                    <excludes>
                        **/module-info.java
                    </excludes>
                    <debug>true</debug>
                </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>
