mirror of
https://github.com/openjdk/jdk.git
synced 2026-03-04 21:20:17 +00:00
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Co-authored-by: Alex Buckley <alex.buckley@oracle.com> Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com> Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com> Co-authored-by: Mandy Chung <mandy.chung@oracle.com> Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com> Co-authored-by: Miroslav Kos <miroslav.kos@oracle.com> Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com> Reviewed-by: lancea, mchung
74 lines
3.1 KiB
Java
74 lines
3.1 KiB
Java
/*
|
|
* 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;
|
|
}
|
|
|