diff options
author | Aurelien Poscia <aurelien.poscia@sonarsource.com> | 2023-02-15 11:48:25 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-02-21 12:02:56 +0000 |
commit | 2174a4a39b4f09a86d69dd1dafcbf7be7bea0053 (patch) | |
tree | c4b21ba82e1d28a15bf15849a9a7a88605ff23a9 /build.gradle | |
parent | 52677847895557485c032c4ff61f35e4877f95ff (diff) | |
download | sonarqube-2174a4a39b4f09a86d69dd1dafcbf7be7bea0053.tar.gz sonarqube-2174a4a39b4f09a86d69dd1dafcbf7be7bea0053.zip |
SONAR-18484 Documentation for SonarQube Web API V2 (OpenApi/Swagger)
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index c08ad9fc4df..83e41aa32f3 100644 --- a/build.gradle +++ b/build.gradle @@ -158,6 +158,7 @@ subprojects { ext { protobufVersion = '3.21.12' + springVersion = '5.3.23' } sonar { @@ -329,6 +330,7 @@ subprojects { dependency('org.mockito:mockito-core:5.0.0') { exclude 'org.hamcrest:hamcrest-core' } + dependency "org.springframework:spring-test:${springVersion}" dependency 'org.mybatis:mybatis:3.5.11' dependencySet(group: 'org.slf4j', version: '2.0.6') { entry 'jcl-over-slf4j' @@ -341,9 +343,13 @@ subprojects { dependency 'org.simpleframework:simple:5.1.6' dependency 'org.sonarsource.orchestrator:sonar-orchestrator:3.40.0.183' dependency 'org.sonarsource.update-center:sonar-update-center-common:1.29.0.1000' - dependency('org.springframework:spring-context:5.3.23') { + dependency("org.springframework:spring-context:${springVersion}") { exclude 'commons-logging:commons-logging' } + dependency ("org.springframework:spring-webmvc:${springVersion}") { + exclude 'commons-logging:commons-logging' + } + dependency 'org.springdoc:springdoc-openapi-ui:1.6.14' dependency 'org.subethamail:subethasmtp:3.1.7' dependency 'org.yaml:snakeyaml:1.33' |