diff options
author | Kengo TODA <skypencil@gmail.com> | 2021-09-30 19:07:41 +0800 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-08 20:03:10 +0000 |
commit | ac63a87fff684c5c4eb3b0a2562526e2643378be (patch) | |
tree | ff609812b352f1ab823ffae0881ee0acc21f38ca /sonar-ws | |
parent | d0b6b0f341c297ad06a96508d13597b00dd214a6 (diff) | |
download | sonarqube-ac63a87fff684c5c4eb3b0a2562526e2643378be.tar.gz sonarqube-ac63a87fff684c5c4eb3b0a2562526e2643378be.zip |
SONAR-15470 Do not declare Gradle build dependencies using compile and runtime configurations
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws/build.gradle b/sonar-ws/build.gradle index bfb707e01e7..021b9156c2f 100644 --- a/sonar-ws/build.gradle +++ b/sonar-ws/build.gradle @@ -8,7 +8,7 @@ sonarqube { configureCompileJavaToVersion 8 configurations { - testCompile.extendsFrom(compileOnly) + testImplementation.extendsFrom(compileOnly) } dependencies { |