Converted
This commit is contained in:
+9
-9
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user