blob: c206e6616a270d2a0856371d667e33b0994582e3 (
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
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: WebServer :: WebAPIV2"
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
api 'org.springdoc:springdoc-openapi-ui'
api 'org.springframework:spring-webmvc'
api project(':server:sonar-db-dao')
// We are not suppose to have a v1 dependency. The ideal would be to have another common module between webapi and webapi-v2 but that needs a lot of refactoring.
api project(':server:sonar-webserver-webapi')
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.springframework:spring-test'
testImplementation 'org.skyscreamer:jsonassert:1.5.1'
testImplementation testFixtures(project(':server:sonar-server-common'))
testImplementation project(':sonar-testing-harness')
}
|