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
gradle
run
# VERY IMPORTANT
gradle.properties
+3 -2
View File
@@ -46,8 +46,9 @@ publishing {
url = uri("https://maven.winniepat.de/repository/maven-releases/")
credentials {
username = "admin"
password = "oXIAxHoSvdm7EJhvV0BQB9Zjd0OOaunf4VUVj7zq"
username = project.property("publish.username")
password = project.property("publish.password")
// the credentials from before are not valid anymore (I am not that dumb)
}
}
}