Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

build.gradle 565B

12345678910111213141516171819202122232425262728
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Home"
  4. }
  5. }
  6. dependencies {
  7. compileOnly 'com.google.code.findbugs:jsr305'
  8. testCompile 'commons-codec:commons-codec'
  9. testCompile 'commons-io:commons-io'
  10. testCompile 'junit:junit'
  11. testCompile 'org.assertj:assertj-core'
  12. testCompile 'org.mockito:mockito-core'
  13. }
  14. artifactoryPublish.skip = false
  15. // Used by core plugins
  16. publishing {
  17. publications {
  18. mavenJava(MavenPublication) {
  19. from components.java
  20. artifact sourcesJar
  21. artifact javadocJar
  22. }
  23. }
  24. }