You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
After importing the tor.native dependency (and it's transitive dependencies) and trying to compile, there is a split package causing errors similar to the following: error: module tor reads package org.berndpruenster.netlayer.tor from both tor.native and tor
After importing the tor.native dependency (and it's transitive dependencies) and trying to compile, there is a split package causing errors similar to the following:
error: module tor reads package org.berndpruenster.netlayer.tor from both tor.native and tor
This is because the package above exists in both tor.jar and tor.native.jar, both of which are independent modules and cannot share the same package under JPMS rules. More here: https://stackoverflow.com/questions/42358084/package-conflicts-with-automatic-modules-in-java-9/42358212#42358212
Is possible to resolve this either by combining the jars or using a different package?
The text was updated successfully, but these errors were encountered: