diff options
-rw-r--r-- | build.gradle | 1 | ||||
-rw-r--r-- | server/sonar-main/build.gradle | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 999241aef3b..c98a8aa83df 100644 --- a/build.gradle +++ b/build.gradle @@ -351,6 +351,7 @@ subprojects { entry 'okhttp-tls' entry 'logging-interceptor' } + dependency 'commons-logging:commons-logging:1.3.2' dependency 'org.json:json:20240303' // To be removed after migration to JUnit5 is finished dependency 'com.tngtech.java:junit-dataprovider:1.13.1' diff --git a/server/sonar-main/build.gradle b/server/sonar-main/build.gradle index 880abd0355d..f1d2436176b 100644 --- a/server/sonar-main/build.gradle +++ b/server/sonar-main/build.gradle @@ -35,6 +35,6 @@ dependencies { testImplementation 'org.mockito:mockito-core' testImplementation 'com.squareup.okhttp3:mockwebserver' testImplementation 'com.squareup.okhttp3:okhttp-tls' - testImplementation 'commons-logging:commons-logging:1.3.1' + testImplementation 'commons-logging:commons-logging' testImplementation project(':sonar-testing-harness') } |