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/05/11 13:02:34 UTC

[jmeter] branch master updated: chore: remove stale exclusions from lets-plot dependency declarations

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 5542be18d8 chore: remove stale exclusions from lets-plot dependency declarations
5542be18d8 is described below

commit 5542be18d823dd092f8b04246b335c4cfe34f0d0
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Thu May 11 16:02:19 2023 +0300

    chore: remove stale exclusions from lets-plot dependency declarations
---
 src/core/build.gradle.kts | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/core/build.gradle.kts b/src/core/build.gradle.kts
index 8759121956..af479d8ac1 100644
--- a/src/core/build.gradle.kts
+++ b/src/core/build.gradle.kts
@@ -92,14 +92,8 @@ dependencies {
     runtimeOnly("commons-collections:commons-collections") {
         because("Compatibility for old plugins")
     }
-    implementation("org.jetbrains.lets-plot:lets-plot-batik") {
-        // See https://github.com/JetBrains/lets-plot/issues/471
-        exclude("org.jetbrains.kotlin", "kotlin-reflect")
-    }
-    implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm") {
-        // See https://github.com/JetBrains/lets-plot/issues/471
-        exclude("org.jetbrains.kotlin", "kotlin-reflect")
-    }
+    implementation("org.jetbrains.lets-plot:lets-plot-batik")
+    implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm")
     implementation("org.apache.commons:commons-collections4")
     implementation("org.apache.commons:commons-math3") {
         because("Mean, DescriptiveStatistics")