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 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. }