blob: e5ee1087be727665129a53f83024cc1ea976ce7b (
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
54
55
56
57
58
59
60
61
62
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
}
}
}
|