From 1f78142fbaeca51cd5cfea57c492d22be867c481 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Tue, 8 Aug 2023 18:14:15 -0400 Subject: [PATCH] Remove spring dependency management workaround Remove workaround as the name.remal.sonarlint plugin now works around the issue See: https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/365 --- build.gradle.kts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index c6c717ba3..43799cc3f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -32,11 +32,6 @@ tasks.compileJava { options.release = 17 } -dependencyManagement { - // workaround for https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/365 - applyMavenExclusions(false) -} - // Enable dependency locking: https://docs.gradle.org/current/userguide/dependency_locking.html // To achieve reproducible builds, it is necessary to lock versions of dependencies and transitive dependencies such that a build with the same inputs will always resolve the same module versions. // This is called dependency locking.