Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.75 KB

File metadata and controls

36 lines (26 loc) · 1.75 KB

Guides

Java Platform, Standard Edition Oracle JDK 9 Migration Guide

JDK 9 Outreach

3rd party libraries status

Maven - Older projects with module-info

JAXB

Module java.xml.bind (JAXB) is deprecated and subject to removal

Version 2.3.0 is not ready for Java9

jaxb-api-2.3.0.jar                                                                                                                                                                                                                              
Warning: jaxb-api-2.3.0.jar is a multi-release jar file.                                                                                                                                                                                        
All versioned entries are analyzed. To analyze the entries for a specific                                                                                                                                                                       
version, use a newer version of jdeps (JDK 9 or later) "--multi-release" option.

Version 2.3.1 should be release soon (as of 2017-12-14)

Import using maven instead

<dependency>
    <groupId>javax.xml.bind</groupId>
    <artifactId>jaxb-api</artifactId>
    <version>2.3.1</version>
</dependency>