Skip to content

Commit 2004f5b

Browse files
authored
MINOR: Use testRuntimeOnly instead of testRuntime in storage modules (#10524)
`testRuntime` is deprecated in Gradle 6.x and has been removed in Gradle 7.0. Reviewers: Chia-Ping Tsai <[email protected]>, Satish Duggana <[email protected]>
1 parent db688b1 commit 2004f5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ project(':storage:api') {
13471347
testImplementation libs.junitJupiter
13481348
testImplementation libs.mockitoCore
13491349

1350-
testRuntime libs.slf4jlog4j
1350+
testRuntimeOnly libs.slf4jlog4j
13511351
}
13521352

13531353
task createVersionFile(dependsOn: determineCommitId) {
@@ -1409,7 +1409,7 @@ project(':storage') {
14091409
testImplementation libs.junitJupiter
14101410
testImplementation libs.mockitoCore
14111411

1412-
testRuntime libs.slf4jlog4j
1412+
testRuntimeOnly libs.slf4jlog4j
14131413
}
14141414

14151415
task createVersionFile(dependsOn: determineCommitId) {

0 commit comments

Comments
 (0)