Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122
  1. sonarqube {
  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. testCompile 'org.mockito:mockito-core'
  12. }
  13. jar {
  14. manifest {
  15. attributes(
  16. 'Main-Class': 'org.sonar.application.Shutdowner'
  17. )
  18. }
  19. }