Open
Description
Issue_title
module crypto reads package org.web3j.crypto from both core and crypto
Issue_description
This is my project module-info.java:
module com.application.taskmanager.practiceweb3 {
requires javafx.controls;
requires javafx.fxml;
requires abi;
requires core;
requires crypto;
opens com.application.taskmanager.practiceweb3 to javafx.fxml;
exports com.application.taskmanager.practiceweb3;
}
When i try to build it, it keep getting this error:
java: module crypto reads package org.web3j.crypto from both core and crypto
Issue_context
Btw, i'm using jdk 21, and web3j v4.12.1
I can't seem to find a solution to this, i would really appreciate you help.