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 9f2399f commit 5877ade
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion SkyExamples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Gradle script to build the SkyControl/SkyExamples sub-project

// 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.

plugins {
id 'application'
id 'application' // to build JVM applications
}

dependencies {
Expand Down
8 changes: 5 additions & 3 deletions SkyLibrary/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
// Gradle script to build the SkyControl/SkyLibrary sub-project

// 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.

plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
id 'java-library' // to build JVM libraries
id 'maven-publish' // to publish artifacts to Maven repositories
id 'signing' // to sign artifacts for publication
}

ext {
Expand Down
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 SkyControl project
// Gradle script to build the SkyControl project

plugins {
id 'base' // to add a "clean" task to the root project
Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Gradle settings and tasks common to all SkyControl subprojects

apply plugin: 'checkstyle'
apply plugin: 'checkstyle' // to analyze Java sourcecode for style violations
apply plugin: 'java'

java {
Expand Down

0 comments on commit 5877ade

Please sign in to comment.