[3.x] Configure maven central snapshot versions for the Godot Android library
@@ -186,6 +186,9 @@ ext.getGodotPublishVersion = { ->
String versionName = ""
int versionCode = 1
(versionName, versionCode) = generateGodotLibraryVersion(requiredKeys)
+ if (!versionName.endsWith("stable")) {
+ versionName += "-SNAPSHOT"
+ }
return versionName
}
@@ -20,6 +20,13 @@ plugins {
apply from: 'app/config.gradle'
apply from: 'scripts/publish-root.gradle'
+ext {
+ PUBLISH_VERSION = getGodotPublishVersion()
+}
+
+group = ossrhGroupId
+version = PUBLISH_VERSION
allprojects {
repositories {
google()
@@ -4,7 +4,6 @@ plugins {
ext {
- PUBLISH_VERSION = getGodotPublishVersion()
PUBLISH_ARTIFACT_ID = 'godot'