diff options
author | Steve Marion <steve.marion@sonarsource.com> | 2024-03-12 16:11:13 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-03-16 20:02:47 +0000 |
commit | 720d6dd5c4dc08327d8b2271949a66855fb88852 (patch) | |
tree | 47787da0581f8052d69d6b29c4c7e7823e91514e /build.gradle | |
parent | f4896ace30bcad83d4df1bcf4a768e6ff68facb0 (diff) | |
download | sonarqube-720d6dd5c4dc08327d8b2271949a66855fb88852.tar.gz sonarqube-720d6dd5c4dc08327d8b2271949a66855fb88852.zip |
SONAR-21451 replace everit json schema validation library with json-sKema. exclude commons-collection 3 from dependencies.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 512f7a40107..a4561ea8083 100644 --- a/build.gradle +++ b/build.gradle @@ -302,7 +302,10 @@ subprojects { entry 'scribejava-apis' entry 'scribejava-core' } - dependency 'com.github.everit-org.json-schema:org.everit.json.schema:1.14.4' + dependency('com.github.erosb:json-sKema:0.13.0') { + // this version of json-sKema does not make use of commons-collections, so we can exclude it safely + exclude 'commons-collections:commons-collections' + } // This project is no longer maintained and was forked // by https://github.com/java-diff-utils/java-diff-utils // (io.github.java-diff-utils:java-diff-utils). |