You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2019/08/06 20:36:36 UTC

[jmeter] branch master updated: java module does not depend on dbcp2 ldap module depends also on commons-lang3

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

pmouawad 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 fe74a23  java module does not depend on dbcp2 ldap module depends also on commons-lang3
fe74a23 is described below

commit fe74a23e0d2ecbd65661f1d788313cc4a80a3598
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Tue Aug 6 22:35:20 2019 +0200

    java module does not depend on dbcp2
    ldap module depends also on commons-lang3
---
 src/protocol/build.gradle.kts | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/protocol/build.gradle.kts b/src/protocol/build.gradle.kts
index 84d770f..1214668 100644
--- a/src/protocol/build.gradle.kts
+++ b/src/protocol/build.gradle.kts
@@ -81,7 +81,6 @@ project("http") {
 
 project("java") {
     dependencies {
-        implementation("org.apache.commons:commons-dbcp2:2.5.0")
         implementation("org.apache.commons:commons-lang3") {
             because("ArrayUtils")
         }
@@ -144,6 +143,9 @@ project("ldap") {
         implementation("org.apache.commons:commons-text") {
             because("StringEscapeUtils")
         }
+        implementation("org.apache.commons:commons-lang3") {
+            because("StringUtils")
+        }
     }
 }