Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Added modules that are gone in jdk9 #7263
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed Oct 2, 2018
1 parent 676afe3 commit 030e61e
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 1 deletion.
4 changes: 4 additions & 0 deletions cmr-aether/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry exported="true" kind="lib" path="/ceylon-runtime/dist/repo/org/eclipse/ceylon/aether/3.3.9/org.eclipse.ceylon.aether-3.3.9.jar"/>
<classpathentry exported="true" kind="lib" path="/ceylon-runtime/dist/repo/javax/xml/bind/2.3.0/javax.xml.bind-2.3.0.jar"/>
<classpathentry exported="true" kind="lib" path="/ceylon-runtime/dist/repo/com/sun/xml/bind/jaxb-impl/2.3.0.1/com.sun.xml.bind.jaxb-impl-2.3.0.1.jar"/>
<classpathentry exported="true" kind="lib" path="/ceylon-runtime/dist/repo/com/sun/xml/bind/jaxb-core/2.3.0.1/com.sun.xml.bind.jaxb-core-2.3.0.1.jar"/>
<classpathentry exported="true" kind="lib" path="/ceylon-runtime/dist/repo/javax/activation/1.2.0/javax.activation-1.2.0.jar"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>
Binary file not shown.
11 changes: 11 additions & 0 deletions runtime/dist/repo/com/sun/xml/bind/jaxb-core/2.3.0.1/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<module xmlns="urn:jboss:module:1.0" name="com.sun.xml.bind.jaxb-core" slot="2.3.0.1">
<resources>
<resource-root path="com.sun.xml.bind.jaxb-core-2.3.0.1.jar"/>
</resources>

<dependencies>
<module name="java.base" slot="7" export="true"/>
<module name="javax.xml.bind" slot="2.3.0" export="true"/>
</dependencies>

</module>
Binary file not shown.
24 changes: 24 additions & 0 deletions runtime/dist/repo/com/sun/xml/bind/jaxb-impl/2.3.0.1/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<module xmlns="urn:jboss:module:1.0" name="com.sun.xml.bind.jaxb-impl" slot="2.3.0.1">
<resources>
<resource-root path="com.sun.xml.bind.jaxb-impl-2.3.0.1.jar"/>
</resources>

<dependencies>
<module name="java.base" slot="7" export="true"/>
<module name="javax.xml.bind" slot="2.3.0" export="true"/>
<module name="javax.activation" slot="1.2.0" export="true"/>
<module name="com.sun.xml.bind.jaxb-core" slot="2.3.0.1" export="true"/>
</dependencies>

<exports>
<!-- Uses external libs -->
<exclude path="com/sun/xml/bind/v2/runtime/unmarshaller/FastInfosetConnector$CharSequenceImpl*"/>
<exclude path="com/sun/xml/bind/v2/runtime/unmarshaller/FastInfosetConnector*"/>
<exclude path="com/sun/xml/bind/v2/runtime/unmarshaller/StAXStreamConnector*"/>
<exclude path="com/sun/xml/bind/v2/runtime/unmarshaller/StAXExConnector*"/>
<exclude path="com/sun/xml/bind/v2/runtime/output/XMLStreamWriterOutput*"/>
<exclude path="com/sun/xml/bind/v2/runtime/output/FastInfosetStreamWriterOutput*"/>
<exclude path="com/sun/xml/bind/v2/runtime/output/FastInfosetStreamWriterOutput$AppData*"/>
<exclude path="com/sun/xml/bind/v2/runtime/output/StAXExStreamWriterOutput*"/>
</exports>
</module>
Binary file not shown.
10 changes: 10 additions & 0 deletions runtime/dist/repo/javax/activation/1.2.0/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<module xmlns="urn:jboss:module:1.0" name="javax.activation" slot="1.2.0">
<resources>
<resource-root path="javax.activation-1.2.0.jar"/>
</resources>

<dependencies>
<module name="java.base" slot="7" export="true"/>
</dependencies>

</module>
Binary file not shown.
10 changes: 10 additions & 0 deletions runtime/dist/repo/javax/xml/bind/2.3.0/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<module xmlns="urn:jboss:module:1.0" name="javax.xml.bind" slot="2.3.0">
<resources>
<resource-root path="javax.xml.bind-2.3.0.jar"/>
</resources>

<dependencies>
<module name="java.base" slot="7" export="true"/>
</dependencies>

</module>
3 changes: 2 additions & 1 deletion runtime/dist/repo/org/eclipse/ceylon/aether/3.3.9/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@
<module name="java.base" slot="7" export="true"/>
<module name="java.tls" slot="7" export="true"/>
<module name="javax.xml" slot="7" export="true"/>
<module name="javax.xml.bind" slot="2.3.0" export="true"/>
<module name="com.sun.xml.bind.jaxb-impl" slot="2.3.0.1"/>
<system export="true">
<paths>
<path name="javax/xml"/>
<path name="javax/xml/bind"/>
<path name="javax/xml/namespace"/>
<path name="javax/xml/parsers"/>
<path name="javax/xml/stream"/>
Expand Down

0 comments on commit 030e61e

Please sign in to comment.