aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home/build.gradle
blob: cc994082307d8165c558d18969d83d730465471b (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
sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Home"
  }
}

dependencies {
  // please keep list ordered

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

  testCompile 'commons-codec:commons-codec'
  testCompile 'commons-io:commons-io'
  testCompile 'junit:junit'
  testCompile 'org.assertj:assertj-core'
  testCompile 'org.mockito:mockito-core'
}

artifactoryPublish.skip = false

// Used by core plugins
publishing {
  publications {
    mavenJava(MavenPublication) {
      from components.java
      if (release) {
        artifact sourcesJar
        artifact javadocJar
        pom.withXml {
          asNode().appendNode('description', description)
          asNode().children().last() + pomConfig
        }
      }
    }
  }
}