1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add maven publishing configuration for Godot tools

The Godot Android library on MavenCentral is a `template` build; this updated configuration adds a new 'Godot Tools' publishing artifact, allowing developers access to the `editor` build of the Godot Android library.
This commit is contained in:
Fredia Huya-Kouadio
2025-03-30 19:01:12 -07:00
parent e585e6a3eb
commit 19700dacdf
3 changed files with 56 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ plugins {
ext {
PUBLISH_ARTIFACT_ID = 'godot'
TOOLS_PUBLISH_ARTIFACT_ID = 'godot-tools'
}
apply from: "../scripts/publish-module.gradle"
@@ -185,5 +186,9 @@ android {
withSourcesJar()
withJavadocJar()
}
singleVariant("editorRelease") {
withSourcesJar()
withJavadocJar()
}
}
}