Java Modules
See original GitHub issueLooks like I can’t use your module with a module-info, I think it’s missing either an Automatic-Module name or whatever in MANIFEST.mf, although at this point it might be better to just add the module-info.java
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Understanding Java 9 Modules - Oracle
In this article, I introduce the Java 9 Platform Module System (JPMS), the most important new software engineering technology in Java since its...
Read more >A Guide to Java 9 Modularity - Baeldung
A Module is a group of closely related packages and resources along with a new module descriptor file. · we organize the code...
Read more >Java Modules - Jenkov.com
A Java module is a packaging mechanism that enables you to package a Java application or Java API as a separate Java module....
Read more >Java 9 Modules - DigitalOcean
A Module is a self-describing collection of Code, Data, and some Resources. It is a set of related Packages, Types (classes, abstract classes, ......
Read more >Java Modules Tutorial - HowToDoInJava
a class is a container of fields and methods; a package is a container of classes and interfaces; a module is a container...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

just means that certain forms of classpath scanning might be a little less efficient I guess… I’m not going to pretend to fully understand all implications.
I’m not 100% certain, but if you do, you may have to either split build artifacts with jdk 11+ using -release, or just create a new major version that requires java9+. I could be totally wrong about that though, best to test.