File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 34
34
setEnabled(false )
35
35
}
36
36
37
- // This is a rough estimation of what shadow plugin has been doing with our default configuration prior to
38
- // 1.6.2: https://github.com/johnrengelman/shadow/blob/1ff12fc816629ae5bc331fa3889c8ecfcaee7b27/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/ShadowJavaPlugin.groovy#L72-L82
39
- // We just emulate it here for backwards compatibility
40
- shadowJar. configure {
41
- def classpath = project. objects. fileCollection(). from { ->
42
- project. configurations. findByName(' runtimeClasspath' )
43
- }
44
- doFirst {
45
- manifest. attributes ' Class-Path' : classpath. collect { " ${ it.name} " }. findAll { it }. join(' ' )
46
- }
47
- }
48
-
49
37
def shadowJarTask = shadowJar {
50
38
classifier null
51
39
// Shadow only byte buddy, do not package kotlin stdlib
You can’t perform that action at this time.
0 commit comments