Skip to content
This repository was archived by the owner on Jul 1, 2022. It is now read-only.

Commit 760fdda

Browse files
authored
Fix publishing jaeger-thrift shadow artifact (#704)
Signed-off-by: Zbigniew Halas <[email protected]>
1 parent 1d033d4 commit 760fdda

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

jaeger-thrift/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,17 @@ artifacts {
8080
}
8181
tests testJar
8282
}
83+
84+
publishing {
85+
publications {
86+
shadow(MavenPublication) { publication ->
87+
project.shadow.component(publication)
88+
}
89+
}
90+
}
91+
92+
signing {
93+
if (isReleaseVersion) {
94+
sign publishing.publications.shadow
95+
}
96+
}

0 commit comments

Comments
 (0)