You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 605B

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