From f64ffdf082c998b579220cdce879ef3d69421ad6 Mon Sep 17 00:00:00 2001 From: Tony Robalik Date: Sun, 3 Mar 2024 21:25:53 -0800 Subject: [PATCH] chore: remove dagp exclusions. They were fixed a while ago. --- build.gradle.kts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 78ed6154c..3d57d194a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -333,23 +333,6 @@ dependencyAnalysis { onAny { severity("fail") } - onIncorrectConfiguration { - exclude( - // TODO(tsr): - // 1. version catalog ref (libs.relocated.asm) is not working for some reason - // 2. This fatjar is bundling Kotlin stdlib classes, which is what the analysis is detecting - "com.autonomousapps:asm-relocated", - ) - } - onUsedTransitiveDependencies { - exclude( - // TODO(tsr): - // 1. version catalog ref (libs.relocated.asm) is not working for some reason - // 2. This fatjar is bundling Kotlin stdlib classes, which is what the analysis is detecting - // 3. The exclusion only works when I use the project reference, not the Maven coordinates - ":asm-relocated", - ) - } } } }