python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How do I use a legacy jar file with an automatic-module-name in Java?
Assume that a legacy jar file x.jar has an automatic-module-name com.foo.mymodule defined for it in its manifest file. Also, I want to use it in my application that uses modules.
The below is how I tr...
cmutex
Votes: 0
Answers: 0
Are there any JDK 11+ system modules which are not root modules?
In JDKs 9 and 10, there used to be a few modules such as java.xml.bind, containing Java EE classes. They were marked as deprecated and to be removed with the advent of JDK 9 and finally removed in 11 ...

kriegaex
Votes: 0
Answers: 1
RMI Server - module RMIServer does not "exports Server" to module java.rmi
Here is the interface
package Server;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface RmiSomme extends Remote{
public abstract void getInformation(String nom, Stri...
let's play it
Votes: 0
Answers: 1
Modules, Gradle Subprojects, and IntelliJ Woes?
I am trying to make use of modules and gradle subprojects and either receive compile time errors or complaints from IntelliJ.
My project structure is as follows:
Root
- settings.gradle
- core
- buil...
user2635874
Votes: 0
Answers: 1