aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine/build.gradle
blob: de0f9f12d19e6e4f8505ceb782e982f30bd89fb5 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
plugins {
  id 'java-test-fixtures'
}

sonar {
  properties {
    property 'sonar.projectName', "${projectTitle} :: Scanner Engine"
  }
}

// Excluding scanner files in order to benefit of incremental build support
sourceSets.test.resources {
  exclude '**/.sonar/**'
}

configurations {
  testImplementation.extendsFrom(compileOnlyApi)
}

dependencies {
  // please keep the list ordered

  api 'ch.qos.logback:logback-classic'
  api 'ch.qos.logback:logback-core'
  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 'org.apache.commons:commons-csv'
  api 'com.google.protobuf:protobuf-java'
  api 'com.squareup.okhttp3:okhttp'
  api 'com.fasterxml.staxmate:staxmate'
  implementation 'io.github.hakky54:sslcontext-kickstart'
  implementation 'org.bouncycastle:bcprov-jdk18on'
  api 'javax.annotation:javax.annotation-api'
  api 'org.eclipse.jgit:org.eclipse.jgit'
  api 'org.tmatesoft.svnkit:svnkit'
  api 'org.slf4j:jcl-over-slf4j'
  api 'org.slf4j:jul-to-slf4j'
  api 'org.slf4j:log4j-over-slf4j'
  api 'org.slf4j:slf4j-api'
  api 'org.sonarsource.api.plugin:sonar-plugin-api'
  api 'org.sonarsource.git.blame:git-files-blame'
  api 'org.sonarsource.update-center:sonar-update-center-common'
  api 'org.springframework:spring-context'


  api project(':sonar-core')
  api project(':sonar-sarif')
  api project(':sonar-scanner-protocol')
  api project(':sonar-ws')
  api project(':sonar-duplications')
  api project(':sonar-plugin-api-impl')

  compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'

  testFixturesImplementation 'org.junit.jupiter:junit-jupiter-api'

  testImplementation 'com.squareup.okhttp3:mockwebserver'
  testImplementation 'com.squareup.okhttp3:okhttp'
  testImplementation 'com.tngtech.java:junit-dataprovider'
  testImplementation 'commons-io:commons-io'
  testImplementation 'junit:junit'
  testImplementation 'org.junit.jupiter:junit-jupiter-api'
  testImplementation 'org.junit.jupiter:junit-jupiter-params'
  testImplementation 'org.assertj:assertj-core'
  testImplementation 'com.fasterxml.staxmate:staxmate'
  testImplementation 'org.hamcrest:hamcrest'
  testImplementation 'org.mockito:mockito-core'
  testImplementation 'org.mockito:mockito-junit-jupiter'
  testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  testImplementation project(':plugins:sonar-xoo-plugin')
  testImplementation 'org.wiremock:wiremock-standalone'
  testImplementation 'org.junit-pioneer:junit-pioneer'
  testImplementation 'org.awaitility:awaitility'

  testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
}

license {
  excludes(["**/Fake.java", "**/Fake.groovy", "org/sonar/scanner/cpd/ManyStatements.java", "org/sonar/scm/git/expected-blame/**/*"])
}

artifactoryPublish.skip = false

// Used by core plugins
publishing {
  publications {
    mavenJava(MavenPublication) {
      from components.java
      if (release) {
        artifact sourcesJar
        artifact javadocJar
      }
    }
  }
}

test {
  // Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
  useJUnitPlatform()
}