File tree 2 files changed +9
-2
lines changed
r2dbc-1.0/library-instrumentation-shaded
spring/spring-boot-autoconfigure
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,13 @@ tasks {
30
30
val extractShadowJar by registering(Copy ::class ) {
31
31
dependsOn(shadowJar)
32
32
from(zipTree(shadowJar.get().archiveFile))
33
+ exclude(" META-INF/**" )
33
34
into(" build/extracted/shadow" )
34
35
}
36
+
37
+ val extractShadowJarSpring by registering(Copy ::class ) {
38
+ dependsOn(shadowJar)
39
+ from(zipTree(shadowJar.get().archiveFile))
40
+ into(" build/extracted/shadow-spring" )
41
+ }
35
42
}
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ sourceSets {
15
15
main {
16
16
val shadedDep = project(" :instrumentation:r2dbc-1.0:library-instrumentation-shaded" )
17
17
output.dir(
18
- shadedDep.file(" build/extracted/shadow" ),
19
- " builtBy" to " :instrumentation:r2dbc-1.0:library-instrumentation-shaded:extractShadowJar " ,
18
+ shadedDep.file(" build/extracted/shadow-spring " ),
19
+ " builtBy" to " :instrumentation:r2dbc-1.0:library-instrumentation-shaded:extractShadowJarSpring " ,
20
20
)
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments