aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/build.gradle
blob: e9cd948163e01c8bdacfd1e80debfb613a3dd76b (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Core"
  }
}

configurations {
  includeInResources
}

dependencies {
  compileOnly 'com.google.code.findbugs:jsr305'
  compile 'commons-codec:commons-codec'
  compile 'org.apache.commons:commons-csv'
  compile 'org.picocontainer:picocontainer'
  compile 'com.google.protobuf:protobuf-java'
  compile 'org.codehaus.sonar:sonar-classloader'
  compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  compile 'org.sonarsource.update-center:sonar-update-center-common'
  compile 'org.slf4j:slf4j-api'
  compile 'ch.qos.logback:logback-classic'
  compile 'ch.qos.logback:logback-core'

  includeInResources project(path: ':sonar-plugin-api-deps', configuration: 'shadow')

  testCompile 'junit:junit'
  testCompile 'org.assertj:assertj-core'
  testCompile 'com.tngtech.java:junit-dataprovider'
  testCompile 'org.mockito:mockito-core'
  testCompile project(':sonar-testing-harness')
  testCompile 'org.simpleframework:simple'
  testCompileOnly 'com.google.code.findbugs:jsr305'
}

// sonar-plugin-api.jar is copied into target JAR file
processResources {
  into('/') {
    from configurations.includeInResources
    rename '(.*)-' + project.version + '-all.jar', '$1.jar'
  }
}

// Used by sonar-db-core to run DB Unit Tests
artifactoryPublish.skip = false
publishing {
  publications {
    mavenJava(MavenPublication) {
      from components.java
      artifact sourcesJar
      artifact javadocJar
    }
  }
}