Skip to content
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

jdk-inconsistencies #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
jdk-inconsistencies
  • Loading branch information
TarandeepSingh562 committed Jan 22, 2024
commit 08560e31beff6de3bff213e733a5d15fdfcec9d4
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@
* limitations under the License.
*/
module net.tascalate.javaflow.agent.common {
requires transitive java.instrument;

requires org.slf4j;

requires transitive net.tascalate.javaflow.spi;

exports org.apache.commons.javaflow.agent.common;
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,8 @@
* limitations under the License.
*/
module net.tascalate.javaflow.agent.core {
requires transitive java.instrument;

requires net.tascalate.instrument.agent;

requires net.tascalate.javaflow.agent.common;
requires net.tascalate.javaflow.providers.core;

exports org.apache.commons.javaflow.agent.core;

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,7 @@
* limitations under the License.
*/
module net.tascalate.javaflow.agent.proxy {
requires transitive java.instrument;

requires net.tascalate.instrument.agent;

requires net.tascalate.javaflow.agent.common;
requires net.tascalate.javaflow.providers.proxy;

exports org.apache.commons.javaflow.agent.proxy;
}
1 change: 0 additions & 1 deletion net.tascalate.javaflow.api/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@
module net.tascalate.javaflow.api {
requires org.slf4j;

exports org.apache.commons.javaflow.api;
exports org.apache.commons.javaflow.core;
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/
module net.tascalate.javaflow.providers.asmx {
requires net.tascalate.asmx;
requires net.tascalate.asmx.plus;
requires net.tascalate.asmx.tree;
requires net.tascalate.asmx.tree.analysis;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,5 @@
module net.tascalate.javaflow.tools.jar {
requires org.slf4j;

requires transitive net.tascalate.javaflow.spi;
requires net.tascalate.javaflow.providers.core;

exports org.apache.commons.javaflow.tools.jar;
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,4 @@
*/
module net.tascalate.javaflow.tools.runtime {
requires org.slf4j;

requires transitive net.tascalate.javaflow.spi;

exports org.apache.commons.javaflow.tools.runtime;
}