jaxws/src/jdk.xml.bind/share/classes/module-info.java
author alanb
Thu, 17 Mar 2016 19:04:08 +0000
changeset 36523 116e5d5cdade
child 42398 a05b6a285169
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: lancea, mchung Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, miroslav.kos@oracle.com, erik.joelsson@oracle.com

/*
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

module jdk.xml.bind {
    requires java.activation;
    requires java.compiler;
    requires java.desktop;
    requires java.logging;
    requires java.xml;
    requires java.xml.bind;
    requires jdk.compiler;

    exports com.sun.codemodel.internal to
        jdk.xml.ws;
    exports com.sun.codemodel.internal.writer to
        jdk.xml.ws;
    exports com.sun.istack.internal.tools to
        jdk.xml.ws;
    exports com.sun.tools.internal.jxc.ap to
        jdk.xml.ws;
    exports com.sun.tools.internal.jxc.model.nav to
        jdk.xml.ws;
    exports com.sun.tools.internal.xjc to
        jdk.xml.ws;
    exports com.sun.tools.internal.xjc.api to
        jdk.xml.ws;
    exports com.sun.tools.internal.xjc.reader to
        jdk.xml.ws;
    exports com.sun.tools.internal.xjc.reader.internalizer to
        jdk.xml.ws;
    exports com.sun.tools.internal.xjc.util to
        jdk.xml.ws;
    exports com.sun.xml.internal.xsom.parser to
        jdk.xml.ws;

    // XML document content needs to be exported
    exports com.sun.tools.internal.xjc.reader.xmlschema.bindinfo to
        java.xml.bind;

    // com.sun.tools.internal.xjc.reader.xmlschema.bindinfo.BindInfo uses JAXBContext
    exports com.sun.tools.internal.xjc.generator.bean to java.xml.bind;

    uses com.sun.tools.internal.xjc.Plugin;
    provides com.sun.tools.internal.xjc.Plugin with com.sun.tools.internal.xjc.addon.accessors.PluginImpl;
    provides com.sun.tools.internal.xjc.Plugin with com.sun.tools.internal.xjc.addon.at_generated.PluginImpl;
    provides com.sun.tools.internal.xjc.Plugin with com.sun.tools.internal.xjc.addon.code_injector.PluginImpl;
    provides com.sun.tools.internal.xjc.Plugin with com.sun.tools.internal.xjc.addon.episode.PluginImpl;
    provides com.sun.tools.internal.xjc.Plugin with com.sun.tools.internal.xjc.addon.locator.SourceLocationAddOn;
    provides com.sun.tools.internal.xjc.Plugin with com.sun.tools.internal.xjc.addon.sync.SynchronizedMethodAddOn;
}