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 7ba43b0 commit e71a2c1Copy full SHA for e71a2c1
1 file changed
src/main/kotlin/com/github/jengelman/gradle/plugins/shadow/ShadowBasePlugin.kt
@@ -22,7 +22,9 @@ public abstract class ShadowBasePlugin : Plugin<Project> {
22
addShadowJarToAssembleLifecycle.convention(true)
23
}
24
@Suppress("EagerGradleConfiguration") // this should be created eagerly.
25
- configurations.create(CONFIGURATION_NAME)
+ configurations.create(CONFIGURATION_NAME) {
26
+ it.description = "Specify runtime dependencies that are not merged into the final JAR."
27
+ }
28
29
configurations.create(R8_CONFIGURATION_NAME) {
30
it.description = "R8 executable used by ShadowJar R8 minimization."
0 commit comments