aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-webserver-auth/build.gradle
blob: c4ecfce2477d79a171509bfe9bb73f73048f0d88 (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
sonarqube {
  properties {
    property 'sonar.projectName', "${projectTitle} :: WebServer :: Authentification and Identity"
  }
}

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

  compile 'com.google.code.gson:gson'
  compile 'com.google.guava:guava'
  compile 'io.jsonwebtoken:jjwt-api'
  compile 'io.jsonwebtoken:jjwt-impl'
  compile project(':sonar-core')
  compile project(':server:sonar-process')
  compile project(':server:sonar-server-common')
  compile project(':server:sonar-webserver-api')
  compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  compile project(':sonar-plugin-api-impl')
  compile 'org.mindrot:jbcrypt'

  compileOnly 'com.google.code.findbugs:jsr305'
  compileOnly 'javax.servlet:javax.servlet-api'

  testCompile 'com.tngtech.java:junit-dataprovider'
  testCompile 'javax.servlet:javax.servlet-api'
  testCompile 'org.apache.logging.log4j:log4j-api'
  testCompile 'org.apache.logging.log4j:log4j-core'
  testCompile 'org.assertj:assertj-guava'
  testCompile 'org.mockito:mockito-core'
  testCompile testFixtures(project(':server:sonar-server-common'))
  testCompile project(':sonar-testing-harness')

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

  runtime 'io.jsonwebtoken:jjwt-jackson'

  testFixturesApi 'junit:junit'

  testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
}