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 d0e3368 commit 6fb4e4a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions WesExamples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// of the root project.

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

dependencies {
Expand Down Expand Up @@ -46,7 +46,7 @@ tasks.register('cleanSOs', Delete) { // extracted Linux and Android native libra
delete fileTree(dir: '.', include: '*.so')
}

// Register tasks to run specific apps:
// Register tasks to run the example apps:

tasks.register('AppChooser', JavaExec) {
mainClass = 'jme3utilities.test.wes.AppChooser'
Expand Down
6 changes: 3 additions & 3 deletions WesLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
// 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 Wes project
// Gradle script to build the Wes 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 Wes subprojects

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

java {
Expand Down

0 comments on commit 6fb4e4a

Please sign in to comment.