[libgdx] Add spine.gwt.xml to JAR. Fixes #2748

This commit is contained in:
Mario Zechner 2025-02-11 13:35:45 +01:00
parent 1121e88422
commit 11d457f417

View File

@ -25,6 +25,15 @@ project("spine-libgdx") {
apply plugin: "maven-publish"
apply plugin: "signing"
sourceSets {
main {
resources {
srcDirs = ["src"] // Add this line to include non-Java files from src directory
include "**/*.gwt.xml" // Add this to specifically include GWT module files
}
}
}
dependencies {
implementation "com.badlogicgames.gdx:gdx:$libgdxVersion"
}