-
Notifications
You must be signed in to change notification settings - Fork 84
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
Add Java 9/JPMS module support #116
Comments
As of now temporarily using gradle's plugin to create a plugins {
java
id("de.jjohannes.extra-java-module-info") version "0.1"
}
extraJavaModuleInfo {
module("nuprocess-2.0.1.jar", "com.zaxxer.nuprocess", "2.0.1") {
exports("com.zaxxer.nuprocess")
requires("com.sun.jna")
}
} And the plugin automatically generates the following open module com.zaxxer.nuprocess {
requires java.base;
requires com.sun.jna;
exports com.zaxxer.nuprocess;
} |
2.0.4 will add It's worth noting that, unfortunately, workarounds like this don't work for NuProcess because it uses |
Currently even latest version
2.0.1
of the library does not have support for java modules. Since this is a utility, its will everyone who want to use this with JPMS modules post Java-9The text was updated successfully, but these errors were encountered: