Skip to content

Commit

Permalink
Add transitive keyword for module dependencies (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm authored Mar 18, 2024
1 parent a17403d commit 49d0988
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion library/common/src/jvmMain/java9/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module org.kotlincrypto.core {
requires kotlin.stdlib;
requires transitive kotlin.stdlib;

exports org.kotlincrypto.core;
}
2 changes: 1 addition & 1 deletion library/digest/src/jvmMain/java9/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module org.kotlincrypto.core.digest {
requires kotlin.stdlib;
requires org.kotlincrypto.core;
requires transitive org.kotlincrypto.core;

exports org.kotlincrypto.core.digest;
exports org.kotlincrypto.core.digest.internal;
Expand Down
2 changes: 1 addition & 1 deletion library/mac/src/jvmMain/java9/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module org.kotlincrypto.core.mac {
requires kotlin.stdlib;
requires org.kotlincrypto.core;
requires transitive org.kotlincrypto.core;

exports org.kotlincrypto.core.mac;
}
2 changes: 1 addition & 1 deletion library/xof/src/jvmMain/java9/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module org.kotlincrypto.core.xof {
requires kotlin.stdlib;
requires org.kotlincrypto.core;
requires transitive org.kotlincrypto.core;
requires org.kotlincrypto.endians;

exports org.kotlincrypto.core.xof;
Expand Down

0 comments on commit 49d0988

Please sign in to comment.