You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Merge pull request #74469 from m4gr3d/configure_snapshot_publish_version_3x
[3.x] Configure maven central snapshot versions for the Godot Android library
This commit is contained in:
@@ -186,6 +186,9 @@ ext.getGodotPublishVersion = { ->
|
|||||||
String versionName = ""
|
String versionName = ""
|
||||||
int versionCode = 1
|
int versionCode = 1
|
||||||
(versionName, versionCode) = generateGodotLibraryVersion(requiredKeys)
|
(versionName, versionCode) = generateGodotLibraryVersion(requiredKeys)
|
||||||
|
if (!versionName.endsWith("stable")) {
|
||||||
|
versionName += "-SNAPSHOT"
|
||||||
|
}
|
||||||
return versionName
|
return versionName
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,13 @@ plugins {
|
|||||||
apply from: 'app/config.gradle'
|
apply from: 'app/config.gradle'
|
||||||
apply from: 'scripts/publish-root.gradle'
|
apply from: 'scripts/publish-root.gradle'
|
||||||
|
|
||||||
|
ext {
|
||||||
|
PUBLISH_VERSION = getGodotPublishVersion()
|
||||||
|
}
|
||||||
|
|
||||||
|
group = ossrhGroupId
|
||||||
|
version = PUBLISH_VERSION
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
PUBLISH_VERSION = getGodotPublishVersion()
|
|
||||||
PUBLISH_ARTIFACT_ID = 'godot'
|
PUBLISH_ARTIFACT_ID = 'godot'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user