Skip to content

Commit e71a2c1

Browse files
authored
Add description for shadow configuration (#2084)
1 parent 7ba43b0 commit e71a2c1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/kotlin/com/github/jengelman/gradle/plugins/shadow/ShadowBasePlugin.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ public abstract class ShadowBasePlugin : Plugin<Project> {
2222
addShadowJarToAssembleLifecycle.convention(true)
2323
}
2424
@Suppress("EagerGradleConfiguration") // this should be created eagerly.
25-
configurations.create(CONFIGURATION_NAME)
25+
configurations.create(CONFIGURATION_NAME) {
26+
it.description = "Specify runtime dependencies that are not merged into the final JAR."
27+
}
2628
@Suppress("EagerGradleConfiguration") // this should be created eagerly.
2729
configurations.create(R8_CONFIGURATION_NAME) {
2830
it.description = "R8 executable used by ShadowJar R8 minimization."

0 commit comments

Comments
 (0)