blob: 4cca46f43b0913f05e5d124874bd51c8b238cd24 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
description = 'Code of the Compute Engine task processing project analysis reports'
sonar {
properties {
property 'sonar.projectName', "${projectTitle} :: Compute Engine :: Task :: Project Analysis"
}
}
sourceSets {
test {
resources {
srcDirs += ['src/test/projects']
}
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
api 'org.slf4j:jul-to-slf4j'
api 'org.slf4j:slf4j-api'
api 'net.sf.trove4j:core:3.1.0'
api 'commons-codec:commons-codec'
api 'commons-io:commons-io'
api 'org.apache.commons:commons-lang3'
implementation 'org.apache.commons:commons-text'
api 'com.google.code.gson:gson'
api 'com.google.guava:guava'
api 'com.google.code.findbugs:jsr305'
api 'com.google.protobuf:protobuf-java'
api 'com.googlecode.java-diff-utils:diffutils'
api 'org.mybatis:mybatis'
api 'org.sonarsource.api.plugin:sonar-plugin-api'
api project(':sonar-core')
api project(':server:sonar-ce-common')
api project(':server:sonar-ce-task')
api project(':server:sonar-db-migration')
api project(':server:sonar-process')
api project(':server:sonar-server-common')
api project(':sonar-plugin-api-impl')
api project(':sonar-duplications')
api project(':sonar-scanner-protocol')
compileOnlyApi 'com.google.code.findbugs:jsr305'
api project(':server:sonar-db-dao')
testImplementation 'com.google.code.findbugs:jsr305'
testImplementation 'com.tngtech.java:junit-dataprovider'
testImplementation 'org.apache.logging.log4j:log4j-api'
testImplementation 'org.apache.logging.log4j:log4j-core'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.assertj:assertj-guava'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
testImplementation 'org.reflections:reflections'
testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
testImplementation project(':sonar-testing-harness')
testImplementation testFixtures(project(':server:sonar-server-common'))
testFixturesApi 'junit:junit'
testFixturesApi 'org.assertj:assertj-core'
testFixturesApi 'org.junit.jupiter:junit-jupiter-api'
testFixturesApi 'org.mockito:mockito-core'
testFixturesApi testFixtures(project(':server:sonar-ce-task'))
testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
}
test {
// Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
useJUnitPlatform()
}
|