aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-shutdowner/build.gradle
blob: 39afc0069fa6be75f972d161bb8d4f928f7f241c (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.google.code.findbugs:jsr305'

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

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