We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a225f commit 35318cdCopy full SHA for 35318cd
src/docs/changes/README.md
@@ -3,6 +3,9 @@
3
4
## [Unreleased]
5
6
+**Fixed**
7
+
8
+- Fix resolving BOM dependencies when `minimize` is enabled. ([#1638](https://github.com/GradleUp/shadow/pull/1638))
9
10
## [v8.3.9] (2025-08-05)
11
src/main/groovy/com/github/jengelman/gradle/plugins/shadow/internal/UnusedTracker.groovy
@@ -77,7 +77,10 @@ class UnusedTracker {
77
apiJars.addAll(dep.files)
78
} else {
79
addJar(runtimeConfiguration, dep, apiJars)
80
- apiJars.add(runtimeConfiguration.find { it.name.startsWith("${dep.name}-") } as File)
+ def jarFile = runtimeConfiguration.find { it.name.startsWith("${dep.name}-") }
81
+ if (jarFile != null) {
82
+ apiJars.add(jarFile)
83
+ }
84
}
85
86
0 commit comments