We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76903b4 commit c050b46Copy full SHA for c050b46
scripts/maven.gradle
@@ -28,10 +28,10 @@ afterEvaluate {
28
29
withXml {
30
asNode().dependencies.'*'.findAll() {
31
- it.scope.text() == 'runtime' && project.configurations.compile.allDependencies.find { dep ->
+ it.scope.text() == 'runtime' && project.configurations.implementation.allDependencies.find { dep ->
32
dep.name == it.artifactId.text()
33
}
34
- }.each { it.scope*.value = 'compile'}
+ }.each { it.scope*.value = 'implementation'}
35
36
37
0 commit comments