Top "Java-platform-module-system" questions

Project Jigsaw aims to design and implement a standard module system for the Java SE platform.

Java 9: Exporting packages to unnamed modules fail

I am trying to build an open-source project against Java 9. There are some files which I need to access using …

java java-9 java-platform-module-system
Scanning classpath/modulepath in runtime in Java 9

I can't seem to find any info on whether scanning all available classes (for interfaces, annotations etc) is still possible …

java classpath java-9 java-platform-module-system java-module
Is there any need to switch to modules when migrating to Java 9+/Java 11?

We're currently migrating from Java 8 to Java 11. However, upgrading our services was less painful, than we anticipated. We basically only …

java java-11 java-platform-module-system
Using different versions of dependencies in separated Java platform modules

I expected it's possible to use i.e. Guava-19 in myModuleA and guava-20 in myModuleB, since jigsaw modules have their …

java java-9 java-platform-module-system
How to use 3rd party library in Java9 module?

I have some java9 module that uses 3rd party library that is not Java9 module, just a simple utility jar. …

java java-9 modularity java-module java-platform-module-system
How do I run images generated by JDK 9 jlink?

I follow the Jigsaw quickstart here. I successfully ran the jlink command given: jlink --module-path $JAVA_HOME/jmods:mlib --add-modules …

java java-9 java-platform-module-system jlink
Is it possible to use dependencies without module-info.class in a Java 9 module

I created two small projects de.app1 and de.app2, where App from de.app1 uses Test from de.app2. ├── …

java java-9 java-platform-module-system
Where to place module-info.java using Java 9?

I have an OSGI application and I have around 30 bundles (jar files). Today I decided to see how it works/…

java osgi apache-felix java-9 java-platform-module-system
New Keywords in Java 9

One of Java 9's largest features will be a module system defined by Project Jigsaw. When reading slides from the …

java syntax java-9 java-platform-module-system