diff options
author | David Rautureau <david.rautureau@sonarsource.com> | 2018-02-08 15:01:19 +0100 |
---|---|---|
committer | David Rautureau <david.rautureau@sonarsource.com> | 2018-03-09 11:33:38 +0100 |
commit | 1a17e4302e4b63de6b4ce7c049441803b9471524 (patch) | |
tree | 031bcfbf302c7909c5b45a7c31f1bbc00a2fce34 /sonar-scanner-engine/build.gradle | |
parent | 21fbe3697bdb6e66016ef8d0bea49da574e02e7d (diff) | |
download | sonarqube-1a17e4302e4b63de6b4ce7c049441803b9471524.tar.gz sonarqube-1a17e4302e4b63de6b4ce7c049441803b9471524.zip |
Move To Gradle
Diffstat (limited to 'sonar-scanner-engine/build.gradle')
-rw-r--r-- | sonar-scanner-engine/build.gradle | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/sonar-scanner-engine/build.gradle b/sonar-scanner-engine/build.gradle new file mode 100644 index 00000000000..e5ee1087be7 --- /dev/null +++ b/sonar-scanner-engine/build.gradle @@ -0,0 +1,63 @@ +sonarqube { + properties { + property 'sonar.projectName', "${projectTitle} :: Scanner Engine" + } +} + +// Excluding scanner files in order to benefit of incremental build support +sourceSets.test.resources { + exclude '**/.sonar/**' +} + +configurations { + testCompile.extendsFrom(compileOnly) +} + +dependencies { + compile 'commons-codec:commons-codec' + compile 'commons-lang:commons-lang' + compile 'com.google.code.gson:gson' + compile 'com.google.guava:guava' + compile 'org.freemarker:freemarker' + compile 'org.slf4j:jul-to-slf4j' + compile 'org.slf4j:log4j-over-slf4j' + compile 'org.slf4j:slf4j-api' + compile 'org.sonarsource:sonar-persistit' + compile project(':sonar-core') + compile project(':sonar-scanner-protocol') + compile project(':sonar-ws') + compile project(':sonar-home') + compile project(path: ':sonar-plugin-api', configuration: 'shadow') + + compileOnly 'com.google.code.findbugs:jsr305' + + testCompile 'com.tngtech.java:junit-dataprovider' + testCompile 'javax.servlet:javax.servlet-api' + testCompile 'junit:junit' + // Workaround to resolve dependencies of eclipse specific packaging: https://issues.gradle.org/browse/GRADLE-2076 + testCompile module('org.eclipse.jetty:jetty-server') { + dependencies( + "org.eclipse.jetty.orbit:javax.servlet:3.0.0.v201112011016@jar", + "org.eclipse.jetty:jetty-continuation:8.1.2.v20120308", + "org.eclipse.jetty:jetty-http:8.1.2.v20120308" + ) + } + testCompile 'org.assertj:assertj-core' + testCompile 'org.mockito:mockito-core' + testCompile 'net.javacrumbs.json-unit:json-unit-assertj:0.0.15' + testCompile project(':plugins:sonar-xoo-plugin') + testCompile project(':sonar-plugin-api').sourceSets.test.output +} + +artifactoryPublish.skip = false + +// Used by core plugins +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + artifact sourcesJar + artifact javadocJar + } + } +} |