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 c3a23004c4 chore: move commons-collections from compile to
runtime-only dependency of :src:core
c3a23004c4 is described below
commit c3a23004c4dd333c863a3580f03af32978fd60e5
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Thu May 11 15:58:36 2023 +0300
chore: move commons-collections from compile to runtime-only dependency of
:src:core
commons-collections was not used in JMeter for a while, so it is time to
move
the dependency in runtimeOnly.
It keeps backward compatibility, and it makes autocomplete menus smaller
when
coding JMeter itself.
---
src/core/build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/build.gradle.kts b/src/core/build.gradle.kts
index 10ba64bd4c..8759121956 100644
--- a/src/core/build.gradle.kts
+++ b/src/core/build.gradle.kts
@@ -89,7 +89,7 @@ dependencies {
implementation("commons-codec:commons-codec") {
because("DigestUtils")
}
- implementation("commons-collections:commons-collections") {
+ runtimeOnly("commons-collections:commons-collections") {
because("Compatibility for old plugins")
}
implementation("org.jetbrains.lets-plot:lets-plot-batik") {