aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-duplications/build.gradle
blob: 2afa1c31eda0fa4721ba42e9c86fd829116a97ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
sonar {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Duplications"
  }
}

dependencies {
  // please keep list ordered

  api 'org.codehaus.sonar:sonar-channel'
  api 'org.sonarsource.api.plugin:sonar-plugin-api'

  compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'

  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'
}