@@ -99,7 +99,11 @@ class ConventionPlugin : Plugin<Project> {
99
99
}
100
100
101
101
publishing.publications.all { pub ->
102
+ // Sign every publication, except when we're running our functional tests. Note that Gradle has weird behavior
103
+ // here, and will still sign publications, even if the predicate is false, if a signatory is configured.
104
+ // https://docs.gradle.org/current/userguide/signing_plugin.html#sec:conditional_signing
102
105
signing.sign(pub)
106
+ signing.setRequired({ ! gradle.taskGraph.hasTask(" :functionalTest" ) })
103
107
104
108
// Some weird behavior with the `com.gradle.plugin-publish` plugin.
105
109
// I need to do this in afterEvaluate or it breaks.
@@ -150,14 +154,14 @@ class ConventionPlugin : Plugin<Project> {
150
154
}
151
155
}
152
156
153
- val isRunningTests = objects.property(Boolean ::class .java).convention(false )
154
- gradle.taskGraph.whenReady { g ->
155
- g.allTasks.any { t ->
156
- t.name.contains(" functionalTest" )
157
- }.also {
158
- isRunningTests.set(it)
159
- }
160
- }
157
+ // val isRunningTests = objects.property(Boolean::class.java).convention(false)
158
+ // gradle.taskGraph.whenReady { g ->
159
+ // g.allTasks.any { t ->
160
+ // t.name.contains("functionalTest")
161
+ // }.also {
162
+ // isRunningTests.set(it)
163
+ // }
164
+ // }
161
165
162
166
val isCi: Provider <Boolean > = providers
163
167
.environmentVariable(" CI" )
@@ -168,7 +172,7 @@ class ConventionPlugin : Plugin<Project> {
168
172
with (t) {
169
173
inputs.property(" version" , publishedVersion)
170
174
inputs.property(" is-ci" , isCi)
171
- inputs.property(" is-running-tests" , isRunningTests)
175
+ // inputs.property("is-running-tests", isRunningTests)
172
176
173
177
// Don't sign snapshots
174
178
onlyIf(" Not a snapshot" ) { ! isSnapshot.get() }
0 commit comments