Mario Zechner 1 жил өмнө
parent
commit
f9a8e31e1f

+ 14 - 0
spine-libgdx/publish.sh

@@ -0,0 +1,14 @@
+#!/bin/sh
+
+#
+# 1. Set up PGP key for signing
+# 2. Create ~/.gradle/gradle.properties
+# 3. Add
+#    ossrhUsername=<sonatype-token-user-name>
+#    ossrhPassword=<sonatype-token>
+#    signing.gnupg.passphrase=<pgp-key-passphrase>
+#
+# After publishing via this script, log into https://oss.sonatype.org and release it manually after
+# checks pass ("Close -> Release & Drop").
+set -e
+ ./gradlew publishReleasePublicationToSonaTypeRepository --info

+ 1 - 1
spine-libgdx/publishing.gradle

@@ -3,7 +3,7 @@ project("spine-libgdx") {
     apply plugin: "maven-publish"
     apply plugin: "signing"
 
-    def libraryVersion = "4.2.3-SNAPSHOT" // Update as needed
+    def libraryVersion = "4.2.4"
 
     dependencies {
         implementation "com.badlogicgames.gdx:gdx:$libgdxVersion"