Skip to content

Commit

Permalink
kotlinx-coroutines-debug: Soften requirements on bytebuddy & junit
Browse files Browse the repository at this point in the history
As those dependencies are not *required* to be available at runtime
- bytebuddy: Is shadowed and packaged into the -debug.jar
- junit: Is optional
  • Loading branch information
sellmair committed Oct 10, 2024
1 parent 59dc652 commit f4d6051
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kotlinx-coroutines-debug/src/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
requires java.instrument;
requires kotlin.stdlib;
requires kotlinx.coroutines.core;
requires net.bytebuddy;
requires net.bytebuddy.agent;
requires org.junit.jupiter.api;
requires org.junit.platform.commons;
requires static net.bytebuddy;
requires static net.bytebuddy.agent;
requires static org.junit.jupiter.api;
requires static org.junit.platform.commons;

exports kotlinx.coroutines.debug;
exports kotlinx.coroutines.debug.junit4;
Expand Down

0 comments on commit f4d6051

Please sign in to comment.