Credential fix for making code public

This commit is contained in:
Patrick
2026-06-04 01:06:51 +02:00
parent 60dfa7dd1f
commit 3eb0e3042a
2 changed files with 7 additions and 3 deletions
+3
View File
@@ -3,3 +3,6 @@
build build
gradle gradle
run run
# VERY IMPORTANT
gradle.properties
+3 -2
View File
@@ -46,8 +46,9 @@ publishing {
url = uri("https://maven.winniepat.de/repository/maven-releases/") url = uri("https://maven.winniepat.de/repository/maven-releases/")
credentials { credentials {
username = "admin" username = project.property("publish.username")
password = "oXIAxHoSvdm7EJhvV0BQB9Zjd0OOaunf4VUVj7zq" password = project.property("publish.password")
// the credentials from before are not valid anymore (I am not that dumb)
} }
} }
} }