File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ subprojects {
103103 apply plugin : ' signing'
104104 apply plugin : ' checkstyle'
105105 apply plugin : ' eclipse'
106- apply plugin : ' com.github.johnrengelman.shadow'
107106
108107 group = sbeGroup
109108 version = sbeVersion
@@ -151,7 +150,6 @@ subprojects {
151150 signing {
152151 required { isReleaseVersion && gradle. taskGraph. hasTask(" uploadArchives" ) }
153152 sign configurations. archives
154- sign configurations. shadow
155153 }
156154
157155 install {
@@ -307,6 +305,11 @@ project(':sbe-all') {
307305 archives sourcesJar
308306 archives javadocJar
309307 }
308+
309+ signing {
310+ required { isReleaseVersion && gradle. taskGraph. hasTask(" uploadArchives" ) }
311+ sign configurations. shadow
312+ }
310313}
311314
312315project(' :sbe-samples' ) {
@@ -465,6 +468,11 @@ project(':sbe-benchmarks') {
465468 archives sourcesJar
466469 archives javadocJar
467470 }
471+
472+ signing {
473+ required { isReleaseVersion && gradle. taskGraph. hasTask(" uploadArchives" ) }
474+ sign configurations. shadow
475+ }
468476}
469477
470478/*
You can’t perform that action at this time.
0 commit comments