From 500146f01e7e55130d8afbfa16996cc823881782 Mon Sep 17 00:00:00 2001 From: lucjross Date: Sun, 13 Oct 2024 01:35:37 -0500 Subject: [PATCH] clean up x-ray remnants --- extensions/aws-xray-extension/core/build.gradle.kts | 9 --------- .../aws-xray-extension/spring-boot/build.gradle.kts | 9 --------- 2 files changed, 18 deletions(-) diff --git a/extensions/aws-xray-extension/core/build.gradle.kts b/extensions/aws-xray-extension/core/build.gradle.kts index 4983b55b..595141fa 100644 --- a/extensions/aws-xray-extension/core/build.gradle.kts +++ b/extensions/aws-xray-extension/core/build.gradle.kts @@ -3,15 +3,6 @@ description = "Extension for integration AWS Xray Tracing into the Message Liste val awsXrayVersion: String by project -configurations.all { - resolutionStrategy.eachDependency { - if (requested.group.startsWith("com.fasterxml.jackson")) { - // 2.17.2 is incompatible but needed by other subprojects - useVersion("2.15.2") - } - } -} - dependencies { api("com.amazonaws:aws-xray-recorder-sdk-core:$awsXrayVersion") api(project(":java-dynamic-sqs-listener-api")) diff --git a/extensions/aws-xray-extension/spring-boot/build.gradle.kts b/extensions/aws-xray-extension/spring-boot/build.gradle.kts index 0d3c9cb8..73277e19 100644 --- a/extensions/aws-xray-extension/spring-boot/build.gradle.kts +++ b/extensions/aws-xray-extension/spring-boot/build.gradle.kts @@ -3,15 +3,6 @@ description = "Extension for integration AWS Xray Tracing into the Message Liste val springBootVersion: String by project -configurations.all { - resolutionStrategy.eachDependency { - if (requested.group.startsWith("com.fasterxml.jackson")) { - // 2.17.2 is incompatible but needed by other subprojects - useVersion("2.15.2") - } - } -} - dependencies { implementation(platform("org.springframework.boot:spring-boot-dependencies:$springBootVersion"))