From 3eb0e3042aec05d806f79f5c562f211d0bf20976 Mon Sep 17 00:00:00 2001 From: Patrick <147879351+WinniePatGG@users.noreply.github.com> Date: Thu, 4 Jun 2026 01:06:51 +0200 Subject: [PATCH] Credential fix for making code public --- .gitignore | 5 ++++- build.gradle | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5f9436c..d7ba5a3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,7 @@ .idea build gradle -run \ No newline at end of file +run + +# VERY IMPORTANT +gradle.properties \ No newline at end of file diff --git a/build.gradle b/build.gradle index a69b66c..b90051e 100644 --- a/build.gradle +++ b/build.gradle @@ -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) } } }