This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 6b650080c4 chore: use xercesImpl:2.12.1 for the buildscript classpath 
to avoid old xerces during the build
6b650080c4 is described below

commit 6b650080c40ef1d0ac4c52a597fd20f9c746485c
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Tue Aug 6 10:37:53 2024 +0300

    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.
---
 build-logic/root-build/build.gradle.kts | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/build-logic/root-build/build.gradle.kts 
b/build-logic/root-build/build.gradle.kts
index 734136ffa2..d0a7975f54 100644
--- a/build-logic/root-build/build.gradle.kts
+++ b/build-logic/root-build/build.gradle.kts
@@ -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")

Reply via email to