aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-migration/build.gradle
blob: 466b47e251b9c9fcf73c48dac228a0f622fa874a (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
sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Database Migration"
  }
}

dependencies {
  // please keep the list grouped by configuration and ordered by name

  compile 'com.google.guava:guava'
  compile 'commons-lang:commons-lang'
  compile 'commons-codec:commons-codec'
  compile 'com.fasterxml.staxmate:staxmate'
  compile 'org.picocontainer:picocontainer'

  compile project(':server:sonar-db-core')
  compile project(':server:sonar-process')
  compile project(':sonar-core')

  compileOnly 'com.google.code.findbugs:jsr305'

  testCompile 'com.google.code.findbugs:jsr305'
  testCompile 'com.tngtech.java:junit-dataprovider'
  testCompile 'commons-dbutils:commons-dbutils'
  testCompile 'com.squareup.okhttp3:mockwebserver'
  testCompile 'junit:junit'
  testCompile 'org.assertj:assertj-core'
  testCompile 'org.mindrot:jbcrypt'
  testCompile 'org.mockito:mockito-core'
  testCompile 'org.xmlunit:xmlunit-core'
  testCompile 'org.xmlunit:xmlunit-matchers'
  testCompile project(':sonar-scanner-protocol')
  testCompile project(':sonar-testing-harness')
  testCompile testFixtures(project(':server:sonar-db-core'))

  testRuntime 'com.h2database:h2'
  testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
  testRuntime 'com.oracle.database.jdbc:ojdbc8'
  testRuntime 'org.postgresql:postgresql'
}

test {
  systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
}