-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 9-repo-jigsaw
-
Component/s: core-svc
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
-