-
Bug
-
Resolution: Fixed
-
P3
-
9-repo-jigsaw
Currently, jcmd has a hard dependency on the SA:
$cat jdk/src/jdk.jcmd/share/classes/module-info.java
module jdk.jcmd {
requires jdk.attach;
requires jdk.jvmstat;
requires jdk.hotspot.agent; // untilJDK-8059035 is complete
}
This will break every platform which does not implement the SA.
$cat jdk/src/jdk.jcmd/share/classes/module-info.java
module jdk.jcmd {
requires jdk.attach;
requires jdk.jvmstat;
requires jdk.hotspot.agent; // until
}
This will break every platform which does not implement the SA.
- relates to
-
JDK-8059035 Break the (implicit) dependency from jdk.jcmd to jdk.hotspot.agent
-
- Closed
-