chore: use xercesImpl:2.12.1 for the buildscript classpath to avoid old xerces during the build

This is a build-time only change, and it does not change test/runtime classpath.
This commit is contained in:
Vladimir Sitnikov 2024-08-06 10:37:53 +03:00
parent cbdfd1ba43
commit 6b650080c4
1 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,11 @@ plugins {
}
dependencies {
constraints {
api("xerces:xercesImpl:2.12.1") {
because("Some of the plugins might depend on an older version, and we want using a more recent one")
}
}
api(projects.buildParameters)
api(projects.verification)
api("com.github.vlsi.crlf:com.github.vlsi.crlf.gradle.plugin:1.90")