Skip to content

Commit e01f123

Browse files
committed
buildscripts: comments
1 parent 8a3728d commit e01f123

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Gradle script to build the j-ogg-all project
1+
// Gradle script to build and publish the j-ogg-all project
22

33
plugins {
44
base // to add a "clean" task to the root project

library/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Gradle script to build the "library" subproject of j-ogg-all
1+
// Gradle script to build and publish the "library" subproject of j-ogg-all
22

33
plugins {
44
checkstyle // to analyze Java sourcecode for style violations
@@ -176,7 +176,8 @@ tasks.named("publishMavenPublicationToCentralRepository") { dependsOn("assemble"
176176

177177
// Signing relies on the existence of 3 properties
178178
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
179-
// which should be stored in ~/.gradle/gradle.properties
179+
// which should be set in the ~/.gradle/gradle.properties file
180+
// or by -P options on the command line.
180181

181182
signing {
182183
sign(publishing.publications["maven"])

vorbis/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Gradle script to build the "vorbis" subproject of j-ogg-all
1+
// Gradle script to build and publish the "vorbis" subproject of j-ogg-all
22

33
plugins {
44
checkstyle // to analyze Java sourcecode for style violations
@@ -166,7 +166,8 @@ tasks.named("publishMavenPublicationToCentralRepository") { dependsOn("assemble"
166166

167167
// Signing relies on the existence of 3 properties
168168
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
169-
// which should be stored in ~/.gradle/gradle.properties
169+
// which should be set in the ~/.gradle/gradle.properties file
170+
// or by -P options on the command line.
170171

171172
signing {
172173
sign(publishing.publications["maven"])

0 commit comments

Comments
 (0)