You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2023/04/29 08:04:52 UTC

[jmeter] 02/02: chore: add org.hamcrest constraints to bom-thirdparty since they are needed for ApacheJMeter_junit

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

commit e47c30a2f6f8819a2c4e4117e85c327e89232f3e
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Sat Apr 29 11:04:38 2023 +0300

    chore: add org.hamcrest constraints to bom-thirdparty since they are needed for ApacheJMeter_junit
---
 src/bom-thirdparty/build.gradle.kts | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/src/bom-thirdparty/build.gradle.kts b/src/bom-thirdparty/build.gradle.kts
index 601338026d..d8fe5478f9 100644
--- a/src/bom-thirdparty/build.gradle.kts
+++ b/src/bom-thirdparty/build.gradle.kts
@@ -71,7 +71,18 @@ dependencies {
         api("javax.activation:javax.activation-api:1.2.0")
         api("javax.mail:mail:1.5.0-b01")
         api("jcharts:jcharts:0.7.5")
-        api("junit:junit:4.13.2")
+        api("junit:junit:4.13.2") {
+            because("ApacheJMeter_junit depends on junit4")
+        }
+        api("org.hamcrest:hamcrest-core:2.2") {
+            because("ApacheJMeter_junit depends on junit4")
+        }
+        api("org.hamcrest:hamcrest-library:2.2") {
+            because("ApacheJMeter_junit depends on junit4")
+        }
+        api("org.hamcrest:hamcrest:2.2") {
+            because("ApacheJMeter_junit depends on junit4")
+        }
         api("org.jetbrains:annotations:23.1.0")
         api("org.jetbrains.lets-plot:lets-plot-batik:3.1.0")
         api("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.3.0")