-
-
Notifications
You must be signed in to change notification settings - Fork 131
JPMS ModuleConfiguration #667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or 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
Trying to fix submodule. dupe Use FindJdk to find... the JDK. Update. Install JDK 21 on the machine. Message. Using FindJdk. Add a README. Fix a few bugs. Build tests automatically. Need to figure out how to find java utils. Add validation of java.base. Added an in-member module finder and reference, along with a test that uses them to do a simple Resolve. Added DeocdeModuleName, which sanitizes module names using code points (would be nice to have Rune). Fix problem with invalid Verison. Replace binary class and package names with qualified. Write a custom Deque implementation. Implement module graph, finders, configuration and some tests. Add some test JAR and module files. These are only built in VS, and only from a hard coded JDK for now. Just going to commit them for the moment. Work. More. Initial work on JDK9 modules.
Rename a class.
…nnels to flush to console. So, now we just return and tear down normally. We now cache and dispose of our cached channels explicitely on IDispose of ChannelProvider. This should ensure they get flushed/closed properly on shutdown.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Beginnings of CoreLib support for processing Java modules. The idea with this first effort is going to be allowing ikvmc to comprehend a modulepath. This code is not yet used, but I wanted to get it in.
This branch makes use of JdkUtil for most lookups of java/javac. And it requires a JDK 21 installation (in addition to the JDK 8 installation) to be present on the system. Right now that is so we can generate modularized JAR files for test cases.