File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -117,12 +117,6 @@ tasks.withType<Javadoc> {
117
117
}
118
118
}
119
119
120
- signing {
121
- // Only sign if a key has been configured in gradle.properties
122
- isRequired = providers.gradleProperty(" signing.keyId" ).isPresent
123
- sign(publishing.publications)
124
- }
125
-
126
120
publishing {
127
121
repositories {
128
122
maven {
@@ -196,6 +190,13 @@ publishing {
196
190
}
197
191
}
198
192
193
+
194
+ signing {
195
+ // Only sign if a key has been configured in gradle.properties
196
+ isRequired = providers.gradleProperty(" signing.keyId" ).isPresent
197
+ sign(publishing.publications[" maven" ])
198
+ }
199
+
199
200
dependencies {
200
201
// Compile and test with the last 7.x version to make sure transition scenarios where
201
202
// the Java API client coexists with a 7.x HLRC work fine
You can’t perform that action at this time.
0 commit comments