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 710B

123456789101112131415161718192021222324252627282930313233
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Testing Harness"
  4. }
  5. }
  6. dependencies {
  7. // please keep list ordered
  8. compile 'com.google.code.gson:gson'
  9. compile 'com.googlecode.json-simple:json-simple'
  10. compile 'com.sun.mail:javax.mail'
  11. compile 'commons-io:commons-io'
  12. compile 'junit:junit'
  13. compile 'org.assertj:assertj-core'
  14. compile 'org.hamcrest:hamcrest-core'
  15. compile 'org.jsoup:jsoup'
  16. compileOnly 'com.google.code.findbugs:jsr305'
  17. }
  18. artifactoryPublish.skip = false
  19. publishing {
  20. publications {
  21. mavenJava(MavenPublication) {
  22. from components.java
  23. if (release) {
  24. artifact sourcesJar
  25. artifact javadocJar
  26. }
  27. }
  28. }
  29. }