Fixing & Listening

This commit is contained in:
skippyall
2026-01-18 00:52:13 +01:00
parent 3f2a52fd0a
commit 382b394523
29 changed files with 284 additions and 63 deletions
+7 -7
View File
@@ -122,14 +122,14 @@ publishing {
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
maven {
def release = "https://maven.foxgalaxy.de/private-releases"
def snapshot = "https://maven.foxgalaxy.de/private-snapshot"
url = version.endsWith('SNAPSHOT') ? snapshot : release
if(project.hasProperty("foxgalaxy_user_name") && project.hasProperty("foxgalaxy_password")) {
maven {
url = "https://maven.foxgalaxy.de/private"
credentials {
username = "${maven_user}"
password = "${maven_password}"
credentials {
username = project.property("foxgalaxy_user_name")
password = project.property("foxgalaxy_password")
}
}
}
}