blob: f278192f5586fc17ec6b5c3522a629517d04bf93 (
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
|
sonar {
properties {
property 'sonar.projectName', "${projectTitle} :: Database Migration"
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
api 'com.google.guava:guava'
api 'commons-lang:commons-lang'
api 'commons-codec:commons-codec'
api 'com.fasterxml.staxmate:staxmate'
api project(':server:sonar-db-core')
api project(':server:sonar-process')
api project(':sonar-core')
compileOnlyApi 'com.google.code.findbugs:jsr305'
testImplementation 'com.google.code.findbugs:jsr305'
testImplementation 'com.tngtech.java:junit-dataprovider'
testImplementation 'commons-dbutils:commons-dbutils'
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.mindrot:jbcrypt'
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.xmlunit:xmlunit-core'
testImplementation 'org.xmlunit:xmlunit-matchers'
testImplementation project(':sonar-scanner-protocol')
testImplementation project(':sonar-testing-harness')
testImplementation testFixtures(project(':server:sonar-db-core'))
testRuntimeOnly 'com.h2database:h2'
testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
testRuntimeOnly 'com.oracle.database.jdbc:ojdbc8'
testRuntimeOnly 'org.postgresql:postgresql'
}
test {
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
}
|