From 76e21bf33a76642c7881c16e50f9dbc95ce3c7d8 Mon Sep 17 00:00:00 2001 From: Jerry Duffy Date: Fri, 13 Oct 2023 12:24:42 -0400 Subject: [PATCH] Force commons-codec to v1.13 --- newrelic-agent/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/newrelic-agent/build.gradle b/newrelic-agent/build.gradle index ac751c6858..a19e3204b5 100644 --- a/newrelic-agent/build.gradle +++ b/newrelic-agent/build.gradle @@ -59,6 +59,12 @@ dependencies { jarIntoJar("com.newrelic.agent.java.security:newrelic-security-api:${securityAgentVersion}") jarIntoJar("com.newrelic.agent.java.security:newrelic-security-agent:${securityAgentVersion}") + shadowIntoJar( group: 'commons-codec', name: 'commons-codec') { + version { + strictly "[1.13]" + } + } + shadowIntoJar project(":agent-interfaces") shadowIntoJar project(":agent-model") shadowIntoJar(project(":newrelic-weaver"))