-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify bootclasspath version is at most compilation runtime version
The bootclasspath is loaded by the Java toolchain's runtime used for compilation and thus needs to be compatible with it, otherwise this triggers errors such as: ``` error: cannot access module-info bad class file: /modules/jdk.net/module-info.class class file has wrong version 64.0, should be 61.0 Please remove or make sure it appears in the correct subdirectory of the classpath. error: cannot access module-info bad class file: /modules/jdk.accessibility/module-info.class class file has wrong version 64.0, should be 61.0 Please remove or make sure it appears in the correct subdirectory of the classpath. error: cannot access module-info bad class file: /modules/jdk.internal.vm.compiler.management/module-info.class class file has wrong version 64.0, should be 61.0 Please remove or make sure it appears in the correct subdirectory of the classpath. ```
- Loading branch information
Showing
4 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters