Converted

This commit is contained in:
skippyall
2026-04-29 00:51:31 +02:00
parent 324fea04a9
commit cc9fedd63b
112 changed files with 1928 additions and 771 deletions
+9 -9
View File
@@ -108,6 +108,11 @@ jar {
from("LICENSE") {
rename { "${it}_${project.archives_base_name}"}
}
from("src/main/resoures/assets/minions/lang") {
include("*")
into("data/minions/lang/")
}
}
// configure the maven publication
@@ -124,15 +129,10 @@ 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.
if(project.hasProperty("foxgalaxy_user_name") && project.hasProperty("foxgalaxy_password")) {
maven {
url = "https://maven.foxgalaxy.de/private"
credentials {
username = project.property("foxgalaxy_user_name")
password = project.property("foxgalaxy_password")
}
}
maven {
name = "foxgalaxy"
url = "https://maven.foxgalaxy.de/private"
credentials(PasswordCredentials)
}
}
}