From 610ce6517e3cbfa308ff57b488f8f387183ff4ab Mon Sep 17 00:00:00 2001 From: stephengold Date: Sun, 9 Feb 2025 17:51:56 -0800 Subject: [PATCH] android.gradle: use jjVersion from "gradle.properties" file --- android.gradle | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/android.gradle b/android.gradle index 59e46a4f..015d6ce5 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 $jjVersion are set in the gradle.properties file +// or by -P options on the Gradle command line. ext { groupID = 'com.github.stephengold' - jjVersion = '0.9.6-SNAPSHOT' baseName = "${artifact}-${jjVersion}" // for artifacts websiteUrl = 'https://github.com/stephengold/jolt-jni' }