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

1234567891011121314151617181920212223242526272829
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Testing Harness"
  4. }
  5. }
  6. dependencies {
  7. compile 'commons-io:commons-io'
  8. compile 'com.googlecode.json-simple:json-simple'
  9. compile 'com.google.code.gson:gson'
  10. compile 'junit:junit'
  11. compile 'org.hamcrest:hamcrest-core'
  12. compileOnly 'com.google.code.findbugs:jsr305'
  13. testCompile 'org.assertj:assertj-core'
  14. }
  15. // Used by sonar-db-core to run DB Unit Tests
  16. artifactoryPublish.skip = false
  17. publishing {
  18. publications {
  19. mavenJava(MavenPublication) {
  20. from components.java
  21. artifact sourcesJar
  22. artifact javadocJar
  23. }
  24. }
  25. }