選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

build.gradle 364B

123456789101112131415161718192021
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Shutdowner"
  4. }
  5. }
  6. dependencies {
  7. // please keep list ordered
  8. compileOnly 'com.google.code.findbugs:jsr305'
  9. testCompile 'junit:junit'
  10. testCompile 'org.assertj:assertj-core'
  11. }
  12. jar {
  13. manifest {
  14. attributes(
  15. 'Main-Class': 'org.sonar.application.Shutdowner'
  16. )
  17. }
  18. }