Skip to content

Commit b4467d2

Browse files
authored
Fix godot-library publication by only including non fat jar in actual publication (#289)
The fat jar is only needed for the editor release
1 parent 0d9f3eb commit b4467d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kt/godot-library/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ publishing {
5656
}
5757
artifactId = "godot-library"
5858
description = "Contains godot api as kotlin classes and jvm cpp interaction code."
59-
from(components.getByName("java"))
59+
artifact(tasks.jar)
6060
}
6161
}
6262
}

0 commit comments

Comments
 (0)