blob: c8d51225ef2089ecf44053c9cee1e3af3ee1b313 (
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
|
description = 'Definition of a Compute Engine task and utility "framework" and classes to code one'
sonar {
properties {
property 'sonar.projectName', "${projectTitle} :: Compute Engine :: Task"
}
}
sourceSets {
test {
resources {
srcDirs += ['src/test/projects']
}
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
api 'com.google.guava:guava'
api 'org.slf4j:jul-to-slf4j'
api 'org.slf4j:slf4j-api'
api project(':server:sonar-server-common')
api project(':sonar-core')
compileOnlyApi 'com.google.code.findbugs:jsr305'
compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api'
testImplementation 'ch.qos.logback:logback-access'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'ch.qos.logback:logback-core'
testImplementation 'com.google.code.findbugs:jsr305'
testImplementation 'com.tngtech.java:junit-dataprovider'
testImplementation 'junit:junit'
testImplementation 'org.apache.logging.log4j:log4j-api'
testImplementation 'org.apache.logging.log4j:log4j-core'
testImplementation 'org.assertj:assertj-guava'
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.reflections:reflections'
testImplementation testFixtures(project(':server:sonar-db-dao'))
testFixturesApi 'org.assertj:assertj-core'
testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
}
|