aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ce-task-projectanalysis/build.gradle
blob: 62914da5e86a1eaa0ef88fbfd8013f3212b693e2 (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
description = 'Code of the Compute Engine task processing project analysis reports'

sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Compute Engine :: Task :: Project Analysis"
  }
}

sourceSets {
  test {
    resources {
      srcDirs += ['src/test/projects']
    }
  }
}

configurations {
  tests
  testCompile.extendsFrom compileOnly
}

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

  compile 'org.slf4j:jul-to-slf4j'
  compile 'org.slf4j:slf4j-api'

  compileOnly 'com.google.code.findbugs:jsr305'
  compileOnly 'com.googlecode.java-diff-utils:diffutils'
  compileOnly project(':sonar-core')
  compileOnly project(':server:sonar-ce-task')
  compileOnly project(':server:sonar-db-dao')
  compileOnly project(':server:sonar-process')
  compileOnly project(':server:sonar-server-common')
  compileOnly project(':sonar-plugin-api')
  compileOnly project(':sonar-plugin-api-impl')
  compileOnly project(':sonar-duplications')

  testCompile 'com.google.code.findbugs:jsr305'
  testCompile 'com.h2database:h2'
  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.assertj:assertj-guava'
  testCompile 'org.mockito:mockito-core'
  testCompile 'org.reflections:reflections'
  testCompile project(':server:sonar-db-testing')
  testCompile project(path: ":server:sonar-ce-task", configuration: "tests")
  testCompile project(path: ":server:sonar-server", configuration: "tests")
  testCompile project(path: ":server:sonar-server-common", configuration: "tests")
}

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

artifacts {
 tests testJar
}