Skip to content

Commit c0c70b3

Browse files
committed
build.gradle.kts: comments
1 parent a97f20b commit c0c70b3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Gradle script to build the asm project
1+
// Gradle script to build and publish the asm project
22

33
plugins {
44
`java-library` // to build JVM libraries
@@ -174,11 +174,12 @@ tasks.named("publishMavenPublicationToMavenLocal") {
174174
}
175175
tasks.named("publishMavenPublicationToCentralRepository") { dependsOn("assemble") }
176176

177-
// Register signing tasks:
177+
// Register tasks to sign the Maven artifacts for publication:
178178

179179
// Signing relies on the existence of 3 properties
180180
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
181-
// which should be stored in ~/.gradle/gradle.properties
181+
// which should be set in the ~/.gradle/gradle.properties file
182+
// or by -P options on the command line.
182183

183184
signing {
184185
sign(publishing.publications["maven"])

0 commit comments

Comments
 (0)