You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
benoitf
added
kind/bug
Outline of a bug - must adhere to the bug report template.
status/in-progress
This issue has been taken by an engineer and is under active development.
labels
Nov 3, 2017
Option 1 allow to not increase size of war files as dependencies are provided by the JVM. The only downside of this approach is that each JVM may provide its own implementation of javax.activation and jaxb so it may not work for Che. (But in reality most of the JVMs are providing the same implementations and for Che stack we're always using the same vendor so downside is pretty null)
benoitf
added
status/code-review
This issue has a pull request posted for it and is awaiting code review completion by the community.
and removed
status/in-progress
This issue has been taken by an engineer and is under active development.
labels
Nov 7, 2017
benoitf
removed
the
status/code-review
This issue has a pull request posted for it and is awaiting code review completion by the community.
label
Nov 9, 2017
Description
When using Java 9 to launch Eclipse Che, there are errors
NoClassDefFoundError for javax.activation package and also for javax.xml.bind
it's because Java runtime disable by default access to javax.* API
Fix can either be:
-add-modules java.activation --add-modules java.xml.bind
option at runtimeReproduction Steps
Run Che with Java9 runtime
OS and version:
macOS High Sierra
Related to epic #5326
The text was updated successfully, but these errors were encountered: