sonarqube/sonar-scanner-engine/build.gradle

87 lines
2.5 KiB
Groovy
Raw Normal View History

sonar {
2018-02-08 15:01:19 +01:00
properties {
property 'sonar.projectName', "${projectTitle} :: Scanner Engine"
}
}
// Excluding scanner files in order to benefit of incremental build support
sourceSets.test.resources {
exclude '**/.sonar/**'
}
configurations {
testImplementation.extendsFrom(compileOnlyApi)
2018-02-08 15:01:19 +01:00
}
dependencies {
// please keep the list ordered
api 'ch.qos.logback:logback-classic'
api 'ch.qos.logback:logback-core'
api 'commons-codec:commons-codec'
api 'commons-io:commons-io'
api 'commons-lang:commons-lang'
api 'com.google.code.gson:gson'
api 'org.apache.commons:commons-csv'
api 'com.google.protobuf:protobuf-java'
api 'com.squareup.okhttp3:okhttp'
api 'com.fasterxml.staxmate:staxmate'
api 'javax.annotation:javax.annotation-api'
api 'org.eclipse.jgit:org.eclipse.jgit'
api 'org.tmatesoft.svnkit:svnkit'
api 'org.slf4j:jcl-over-slf4j'
api 'org.slf4j:jul-to-slf4j'
api 'org.slf4j:log4j-over-slf4j'
api 'org.slf4j:slf4j-api'
api 'org.sonarsource.api.plugin:sonar-plugin-api'
api 'org.sonarsource.git.blame:git-files-blame'
api 'org.sonarsource.update-center:sonar-update-center-common'
api 'org.springframework:spring-context'
2019-07-15 22:59:23 +02:00
api project(':sonar-core')
api project(':sonar-scanner-protocol')
api project(':sonar-ws')
api project(':sonar-duplications')
api project(':sonar-plugin-api-impl')
2018-02-08 15:01:19 +01:00
compileOnlyApi 'com.google.code.findbugs:jsr305'
2018-02-08 15:01:19 +01:00
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'com.squareup.okhttp3:okhttp'
testImplementation 'com.squareup.okio:okio'
testImplementation 'com.tngtech.java:junit-dataprovider'
testImplementation 'commons-io:commons-io'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'com.fasterxml.staxmate:staxmate'
testImplementation 'org.hamcrest:hamcrest-core'
testImplementation 'org.mockito:mockito-core'
api 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
testImplementation project(':plugins:sonar-xoo-plugin')
2018-02-08 15:01:19 +01:00
}
license {
excludes(["**/Fake.java", "**/Fake.groovy", "org/sonar/scanner/cpd/ManyStatements.java", "org/sonar/scm/git/expected-blame/**/*"])
}
2018-02-08 15:01:19 +01:00
artifactoryPublish.skip = false
// Produce Java 11 bytecode while making sure the code does not use any APIs from Java 17
tasks.withType(JavaCompile) {
options.release = 11
}
2018-02-08 15:01:19 +01:00
// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
2018-02-08 15:01:19 +01:00
}
}
}