aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-server-common/build.gradle
blob: e4f134941367a7606920d6da93b06ac9418b58f4 (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
description = 'Code shared between the Web Server and the Compute Engine'

sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Server :: Common"
  }
}

configurations {
  tests

  testCompile.extendsFrom tests
}

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

  compile 'org.apache.commons:commons-email'
  compile 'commons-io:commons-io'
  compile 'commons-lang:commons-lang'
  compile 'com.google.guava:guava'
  compile 'org.slf4j:slf4j-api'
  compile 'com.squareup.okhttp3:okhttp'
  compile 'org.elasticsearch.client:transport'
  compile project(':server:sonar-db-dao')
  compile project(':server:sonar-db-migration')
  compile project(':server:sonar-process')
  compile project(':sonar-core')
  compile project(':sonar-markdown')
  compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  compile project(':sonar-ws')

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

  // "tests" dependencies are pulled by other modules which depends on "tests" configuration, "testCompile" are not pulled
  tests 'org.codelibs.elasticsearch.module:analysis-common'
  tests 'org.elasticsearch:mocksocket'

  testCompile 'ch.qos.logback:logback-core'
  testCompile 'com.google.code.findbugs:jsr305'
  testCompile 'com.h2database:h2'
  testCompile 'com.squareup.okhttp3:mockwebserver'
  testCompile 'com.squareup.okio:okio'
  testCompile 'com.tngtech.java:junit-dataprovider'
  testCompile 'junit:junit'
  testCompile 'org.apache.logging.log4j:log4j-api'
  testCompile 'org.apache.logging.log4j:log4j-core'
  testCompile 'org.assertj:assertj-core'
  testCompile 'org.hamcrest:hamcrest-core'
  testCompile 'org.mockito:mockito-core'
  testCompile project(':server:sonar-db-testing')
  testCompile project(path: ':sonar-plugin-api', configuration: 'shadow')
  testCompile project(':sonar-plugin-api-impl')
  testCompile project(':sonar-testing-harness')
}

task testJar(type: Jar) {
  classifier = 'tests'
  from sourceSets.test.output
}

artifacts {
  tests testJar
}