aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-shutdowner/build.gradle
blob: c347c07772d3d0975335ba0a915724d53bcf4971 (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} :: Shutdowner"
  }
}

dependencies {
  // please keep list ordered
  compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'

  testImplementation 'junit:junit'
  testImplementation 'org.assertj:assertj-core'
}

jar {
  manifest {
    attributes(
      'Main-Class': 'org.sonar.application.Shutdowner'
    )
  }
}