sonarqube/sonar-core/build.gradle

60 lines
1.5 KiB
Groovy
Raw Normal View History

2018-02-08 15:01:19 +01:00
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: Core"
}
}
configurations {
includeInResources
}
dependencies {
2018-03-10 14:09:04 +01:00
// please keep list ordered
compile 'ch.qos.logback:logback-classic'
compile 'ch.qos.logback:logback-core'
compile 'com.google.protobuf:protobuf-java'
2018-02-08 15:01:19 +01:00
compile 'commons-codec:commons-codec'
compile 'org.apache.commons:commons-csv'
compile 'org.codehaus.sonar:sonar-classloader'
2018-03-10 14:09:04 +01:00
compile 'org.picocontainer:picocontainer'
2018-02-08 15:01:19 +01:00
compile 'org.slf4j:slf4j-api'
2018-03-10 14:09:04 +01:00
compile 'org.sonarsource.update-center:sonar-update-center-common'
compile project(path: ':sonar-plugin-api', configuration: 'shadow')
compileOnly 'com.google.code.findbugs:jsr305'
2018-02-08 15:01:19 +01:00
includeInResources project(path: ':sonar-plugin-api-deps', configuration: 'shadow')
2018-03-10 14:09:04 +01:00
testCompile 'com.tngtech.java:junit-dataprovider'
2018-02-08 15:01:19 +01:00
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
testCompile 'org.simpleframework:simple'
2018-03-10 14:09:04 +01:00
testCompile project(':sonar-testing-harness')
2018-02-08 15:01:19 +01:00
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
if (release) {
artifact sourcesJar
artifact javadocJar
}
2018-02-08 15:01:19 +01:00
}
}
}