diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2022-11-25 10:24:46 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-12-01 20:03:11 +0000 |
commit | e8e5f48ffdf812693d80299bae1e2e456c79236b (patch) | |
tree | a3a54424cafbcf0a156545d9fcb09399069515ee /sonar-duplications | |
parent | e4724e3ff8b382855cfad2ab76234d8df1b8ef87 (diff) | |
download | sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.tar.gz sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.zip |
SONAR-15595 Replace Gradle deprecated dependency scopes
Diffstat (limited to 'sonar-duplications')
-rw-r--r-- | sonar-duplications/build.gradle | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sonar-duplications/build.gradle b/sonar-duplications/build.gradle index f7dc1d6b20f..d3c65d720b2 100644 --- a/sonar-duplications/build.gradle +++ b/sonar-duplications/build.gradle @@ -7,15 +7,15 @@ sonar { dependencies { // please keep list ordered - compile 'org.codehaus.sonar:sonar-channel' - compile 'org.sonarsource.api.plugin:sonar-plugin-api' + api 'org.codehaus.sonar:sonar-channel' + api 'org.sonarsource.api.plugin:sonar-plugin-api' - compileOnly 'com.google.code.findbugs:jsr305' + compileOnlyApi 'com.google.code.findbugs:jsr305' - testCompile 'ch.qos.logback:logback-classic' - testCompile 'commons-io:commons-io' - testCompile 'junit:junit' - testCompile 'org.assertj:assertj-core' - testCompile 'org.hamcrest:hamcrest-core' - testCompile 'org.mockito:mockito-core' + testImplementation 'ch.qos.logback:logback-classic' + testImplementation 'commons-io:commons-io' + testImplementation 'junit:junit' + testImplementation 'org.assertj:assertj-core' + testImplementation 'org.hamcrest:hamcrest-core' + testImplementation 'org.mockito:mockito-core' } |