.jaxb.jaxb-runtime.2.3.5.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb-runtime Show documentation
Show all versions of jaxb-runtime Show documentation
JAXB (JSR 222) Reference Implementation
/*
* Copyright (c) 2017, 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
*/
/**
* The XML Binding (JAXB) RI modularization implementation.
*
*/
module org.glassfish.jaxb.runtime {
requires transitive java.xml.bind;
requires java.compiler;
requires java.desktop;
requires java.logging;
requires transitive jakarta.activation;
requires transitive java.xml;
requires transitive com.sun.xml.txw2;
requires static com.sun.xml.fastinfoset;
requires static org.jvnet.staxex;
requires transitive com.sun.istack.runtime;
exports com.sun.xml.bind;
exports com.sun.xml.bind.annotation;
exports com.sun.xml.bind.api;
exports com.sun.xml.bind.api.impl;
exports com.sun.xml.bind.marshaller;
exports com.sun.xml.bind.unmarshaller;
exports com.sun.xml.bind.util;
exports com.sun.xml.bind.v2;
exports com.sun.xml.bind.v2.model.annotation;
exports com.sun.xml.bind.v2.model.core;
exports com.sun.xml.bind.v2.model.impl;
exports com.sun.xml.bind.v2.model.nav;
exports com.sun.xml.bind.v2.model.runtime;
exports com.sun.xml.bind.v2.model.util;
exports com.sun.xml.bind.v2.runtime;
exports com.sun.xml.bind.v2.runtime.unmarshaller;
exports com.sun.xml.bind.v2.schemagen;
exports com.sun.xml.bind.v2.schemagen.episode;
exports com.sun.xml.bind.v2.schemagen.xmlschema;
exports com.sun.xml.bind.v2.util;
opens com.sun.xml.bind.v2.runtime.reflect.opt to java.xml.bind;
opens com.sun.xml.bind.v2.schemagen to java.xml.bind;
opens com.sun.xml.bind.v2.schemagen.xmlschema to java.xml.bind;
// The API is going to load us via reflection if no other implementation is found sooner.
// Note that it is NOT mandatory for the javax.xml.bind.JAXBContext
// implementation to implement that interface (v2.ContextFactory does not do that),
// so we cannot use provides javax.xml.bind.JAXBContext with v2.ContextFactory here
// and we have to rely on accessibility of our META-INF/services/javax.xml.bind.JAXBContext
// resource by the API
opens com.sun.xml.bind.v2 to java.xml.bind;
opens com.sun.xml.bind.v2.model.nav to org.glassfish.jaxb.xjc;
}