We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
applyMavenCentralRules
1 parent e66558e commit 8c63445Copy full SHA for 8c63445
build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt
@@ -379,6 +379,14 @@ fun Project.configureJReleaser() {
379
}
380
maxRetries = 100
381
retryDelay = 60 // seconds
382
+ snapshotSupported = false // do not allow publication of snapshot artifacts
383
+ applyMavenCentralRules = true
384
+ // all of the following should be enabled by applyMavenCentralRules but set them explicitly to be sure
385
+ sign = true
386
+ checksums = true
387
+ sourceJar = true
388
+ javadocJar = true
389
+ verifyPom = true
390
391
392
0 commit comments