aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-testing-harness/build.gradle
blob: 9cf1837d8f54dfb9ffcb15d49c8565e58acebc97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Testing Harness"
  }
}

dependencies {
  // please keep list ordered

  compile 'com.google.code.gson:gson'
  compile 'com.googlecode.json-simple:json-simple'
  compile 'commons-io:commons-io'
  compile 'junit:junit'
  compile 'org.hamcrest:hamcrest-all'

  compileOnly 'com.google.code.findbugs:jsr305'

  testCompile 'org.assertj:assertj-core'
}

// Used by sonar-db-core to run DB Unit Tests
artifactoryPublish.skip = false
publishing {
  publications {
    mavenJava(MavenPublication) {
      from components.java
      if (release) {
        artifact sourcesJar
        artifact javadocJar
        pom.withXml {
          asNode().appendNode('description', description)
          asNode().children().last() + pomConfig
        }
      }
    }
  }
}