Skip to content

Commit

Permalink
Added module dependency "org.junit.jupiter.api" to all 5 new test mod…
Browse files Browse the repository at this point in the history
…ules because CI was failing Dependency (Module Info) check.

Signed-off-by: Kim Rader <kim.rader@swirldslabs.com>
  • Loading branch information
kimbor committed Jun 7, 2024
1 parent 93aedbe commit c870a34
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
5 changes: 4 additions & 1 deletion hedera-node/hedera-consensus-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@ description = "Hedera Consensus Service API"
// and then fix the reported issues.
tasks.withType<JavaCompile>().configureEach { options.compilerArgs.add("-Xlint:-exports") }

testModuleInfo { requires("org.assertj.core") }
testModuleInfo {
requires("org.assertj.core")
requires("org.junit.jupiter.api")
}
5 changes: 4 additions & 1 deletion hedera-node/hedera-file-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@ description = "Hedera File Service API"
// and then fix the reported issues.
tasks.withType<JavaCompile>().configureEach { options.compilerArgs.add("-Xlint:-exports") }

testModuleInfo { requires("org.assertj.core") }
testModuleInfo {
requires("org.assertj.core")
requires("org.junit.jupiter.api")
}
5 changes: 4 additions & 1 deletion hedera-node/hedera-network-admin-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@ description = "Hedera NetworkAdmin Service API"
// and then fix the reported issues.
tasks.withType<JavaCompile>().configureEach { options.compilerArgs.add("-Xlint:-exports") }

testModuleInfo { requires("org.assertj.core") }
testModuleInfo {
requires("org.assertj.core")
requires("org.junit.jupiter.api")
}
5 changes: 4 additions & 1 deletion hedera-node/hedera-token-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,7 @@ description = "Hedera Token Service API"
// and then fix the reported issues.
tasks.withType<JavaCompile>().configureEach { options.compilerArgs.add("-Xlint:-exports") }

testModuleInfo { requires("org.assertj.core") }
testModuleInfo {
requires("org.assertj.core")
requires("org.junit.jupiter.api")
}
5 changes: 4 additions & 1 deletion hedera-node/hedera-util-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@ description = "Hedera Util Service API"
// and then fix the reported issues.
tasks.withType<JavaCompile>().configureEach { options.compilerArgs.add("-Xlint:-exports") }

testModuleInfo { requires("org.assertj.core") }
testModuleInfo {
requires("org.assertj.core")
requires("org.junit.jupiter.api")
}

0 comments on commit c870a34

Please sign in to comment.