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

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