While using mockito for testing, bytebuddy is including as well.
Under the condition of JPMS, module-info.java must require jdk.attach then bytebuddy agent can attach JVM, or No compatible attachment provider is available will be thrown.
For this sake, should jdk.attach be transitive required under JPMS?
While using mockito for testing, bytebuddy is including as well. Under the condition of JPMS, module-info.java must require
jdk.attach
then bytebuddy agent can attach JVM, orNo compatible attachment provider is available
will be thrown. For this sake, shouldjdk.attach
be transitive required under JPMS?