From 24077b4a035c86611481c0ba091820edda8149e7 Mon Sep 17 00:00:00 2001 From: Mark Kuhn Date: Fri, 16 Sep 2022 16:28:01 -0700 Subject: [PATCH] add missing dependency in canarytests (#123) --- build.gradle | 1 - canarytests/agent/build.gradle | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f3fbfda5..b67b41d9 100644 --- a/build.gradle +++ b/build.gradle @@ -74,7 +74,6 @@ dependencies { testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.0' testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.0' testImplementation 'org.junit.vintage:junit-vintage-engine:5.9.0' - testImplementation 'org.apache.commons:commons-lang3:3.12.0' testImplementation "org.mockito:mockito-core:2.+" testImplementation "org.powermock:powermock-module-junit4:2.0.2" testImplementation "org.powermock:powermock-api-mockito2:2.0.2" diff --git a/canarytests/agent/build.gradle b/canarytests/agent/build.gradle index 50be2790..23634d01 100644 --- a/canarytests/agent/build.gradle +++ b/canarytests/agent/build.gradle @@ -27,6 +27,7 @@ dependencies { implementation "org.apache.logging.log4j:log4j-api:2.13.3" implementation "org.apache.logging.log4j:log4j-core:2.13.3" implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.13.3" + implementation 'org.apache.commons:commons-lang3:3.12.0' } jar {