Skip to content

Commit

Permalink
buildscripts: move the Libbulletjme version out of the Gradle scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 22, 2025
1 parent 41f92a2 commit 8d975bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions android.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ plugins {
alias(libs.plugins.validate.poms) // to verify POMs provide all info required by Maven Central
}

// $artifact is set in the gradle.properties file
// or by a -Partifact= option on the command line.
// $artifact and $lbjVersion are set in the gradle.properties file
// or by -P options on the Gradle command line.

ext {
groupID = 'com.github.stephengold'
lbjVersion = '21.3.2'
baseName = "${artifact}-${lbjVersion}" // for artifacts
websiteUrl = 'https://github.com/stephengold/Libbulletjme'
}
Expand Down
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ plugins {
alias(libs.plugins.validate.poms) // to verify POMs provide all info required by Maven Central
}

// $artifact is set in the gradle.properties file
// or by a -Partifact= option on the command line.
// $artifact and $lbjVersion are set in the gradle.properties file
// or by -P options on the Gradle command line.

ext {
groupID = 'com.github.stephengold'
lbjVersion = '21.3.2'
baseName = "${artifact}-${lbjVersion}" // for artifacts
websiteUrl = 'https://github.com/stephengold/Libbulletjme'
}
Expand Down

0 comments on commit 8d975bc

Please sign in to comment.