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 @@ -116,12 +116,6 @@ tasks.withType<Javadoc> {
116
116
}
117
117
}
118
118
119
- signing {
120
- // Only sign if a key has been configured in gradle.properties
121
- isRequired = providers.gradleProperty(" signing.keyId" ).isPresent
122
- sign(publishing.publications)
123
- }
124
-
125
119
publishing {
126
120
repositories {
127
121
maven {
@@ -210,6 +204,13 @@ publishing {
210
204
}
211
205
}
212
206
207
+
208
+ signing {
209
+ // Only sign if a key has been configured in gradle.properties
210
+ isRequired = providers.gradleProperty(" signing.keyId" ).isPresent
211
+ sign(publishing.publications[" maven" ])
212
+ }
213
+
213
214
dependencies {
214
215
// Compile and test with the last 7.x version to make sure transition scenarios where
215
216
// the Java API client coexists with a 7.x HLRC work fine
You can’t perform that action at this time.
0 commit comments