From 8d975bc0d4d0d94f8ea09eb41521d9497b701582 Mon Sep 17 00:00:00 2001 From: stephengold Date: Wed, 22 Jan 2025 09:59:13 -0800 Subject: [PATCH] buildscripts: move the Libbulletjme version out of the Gradle scripts --- android.gradle | 5 ++--- build.gradle | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/android.gradle b/android.gradle index f0b9e6ca..8c5cc9c2 100644 --- a/android.gradle +++ b/android.gradle @@ -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' } diff --git a/build.gradle b/build.gradle index c0f98968..1a1567dc 100644 --- a/build.gradle +++ b/build.gradle @@ -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' }