Skip to content

Commit

Permalink
buildscripts: comment and whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 20, 2024
1 parent 9f7ed10 commit fdc5d77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HeartExamples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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 specific applications:

tasks.register('AppChooser', JavaExec) {
mainClass = 'jme3utilities.test.AppChooser'
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {

ext {
jmeTarget = '' // distinguish non-JME libraries built for specific JME releases

heartSnapshot = '-SNAPSHOT' // for development builds
//heartSnapshot = '' // for release builds
heartVersion = '9.0.1' + jmeTarget
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## TOML version catalog for the Heart project
## catalog of libraries and plugins used to build the Heart project

[versions]

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// global build settings shared by all Heart subprojects
// global build settings for the Heart project

rootProject.name = 'Heart'

Expand All @@ -14,7 +14,7 @@ dependencyResolutionManagement {
/*
* Enumerate subdirectories in the project's root directory that contain a
* "build.gradle" file. Any subdirectory that contains a "build.gradle" file is
* automatically a subproject of this project.
* automatically included as a subproject.
*/
def subDirs = rootDir.listFiles(
new FileFilter() {
Expand Down

0 comments on commit fdc5d77

Please sign in to comment.