You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 572B

123456789101112131415161718192021
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Duplications"
  4. }
  5. }
  6. dependencies {
  7. // please keep list ordered
  8. api 'org.codehaus.sonar:sonar-channel'
  9. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  10. compileOnlyApi 'com.google.code.findbugs:jsr305'
  11. testImplementation 'ch.qos.logback:logback-classic'
  12. testImplementation 'commons-io:commons-io'
  13. testImplementation 'junit:junit'
  14. testImplementation 'org.assertj:assertj-core'
  15. testImplementation 'org.hamcrest:hamcrest-core'
  16. testImplementation 'org.mockito:mockito-core'
  17. }