Skip to content

Commit

Permalink
buildscripts: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 8, 2024
1 parent 543cde3 commit 98dbf8d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Gradle build script for the j-ogg-all project
// Gradle script to build the j-ogg-all project

plugins {
id 'base' // to add a "clean" task to the root project
Expand Down
8 changes: 4 additions & 4 deletions common.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Gradle settings and tasks common to all j-ogg-all subprojects

apply plugin: 'checkstyle'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'checkstyle' // to analyze Java sourcecode for style violations
apply plugin: 'java-library' // to build a JVM library
apply plugin: 'maven-publish' // to publish artifacts to Maven repositories
apply plugin: 'signing' // to sign artifacts for publication

ext {
group = 'com.github.stephengold'
Expand Down
8 changes: 6 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
// Gradle build script for the "library" sub-project of j-ogg-all
// Gradle script to build the "library" sub-project of j-ogg-all

// Note: "common.gradle" in the root project contains additional initialization
// for this project. This initialization is applied in the "build.gradle"
// of the root project.

ext {
artifact = 'j-ogg-all'
Expand Down Expand Up @@ -105,7 +109,7 @@ publishMavenPublicationToMavenLocal.doLast {
}
publishMavenPublicationToOSSRHRepository.dependsOn('assemble')

// signing tasks:
// Register signing tasks:

// Signing relies on the existence of 3 properties
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
Expand Down
8 changes: 6 additions & 2 deletions vorbis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
// Gradle build script for the "vorbis" sub-project of j-ogg-all
// Gradle script to build the "vorbis" sub-project of j-ogg-all

// Note: "common.gradle" in the root project contains additional initialization
// for this project. This initialization is applied in the "build.gradle"
// of the root project.

ext {
artifact = 'j-ogg-vorbis'
Expand Down Expand Up @@ -99,7 +103,7 @@ publishMavenPublicationToMavenLocal.doLast {
}
publishMavenPublicationToOSSRHRepository.dependsOn('assemble')

// signing tasks:
// Register signing tasks:

// Signing relies on the existence of 3 properties
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
Expand Down

0 comments on commit 98dbf8d

Please sign in to comment.