Skip to content

Commit c050b46

Browse files
committed
fix build
1 parent 76903b4 commit c050b46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/maven.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ afterEvaluate {
2828

2929
withXml {
3030
asNode().dependencies.'*'.findAll() {
31-
it.scope.text() == 'runtime' && project.configurations.compile.allDependencies.find { dep ->
31+
it.scope.text() == 'runtime' && project.configurations.implementation.allDependencies.find { dep ->
3232
dep.name == it.artifactId.text()
3333
}
34-
}.each { it.scope*.value = 'compile'}
34+
}.each { it.scope*.value = 'implementation'}
3535
}
3636
}
3737
}

0 commit comments

Comments
 (0)