sentry-java icon indicating copy to clipboard operation
sentry-java copied to clipboard

Java Platform Module System compatibility

Open 5force opened this issue 5 years ago • 13 comments

Platform: java --version openjdk 15 2020-09-15 OpenJDK Runtime Environment Zulu15.27+17-CA (build 15+36) OpenJDK 64-Bit Server VM Zulu15.27+17-CA (build 15+36, mixed mode, sharing)

IDE:

  • [ ] Netbeans IDE 12.1

Build system: Maven -> embedded

Platform installed with: Maven Central

The version of the SDK: <groupId>io.sentry</groupId> <artifactId>sentry</artifactId> 1.7.30

module-info.java of project module com.test { requires javafx.controls; requires java.net.http; requires org.controlsfx.controls; requires io.sentry; exports com.test; }


When I try to make self-contained installer by jpackage for my modular test project it ends with error: jdk.incubator.jpackage.internal.PackagerException: jlink failed with: Error: automatic module cannot be used with jlink: io.sentry from file:///C:/Users/....../sentry-1.7.30.jar Do you have any plans to make Sentry modular that includes module-info.class file?

5force avatar Sep 28 '20 12:09 5force