What a horrible waste of time

This commit is contained in:
Anuken
2022-05-10 20:08:48 -04:00
parent 0218e2ed2d
commit 60d3a51ebc
4 changed files with 4 additions and 21 deletions
+3 -14
View File
@@ -468,20 +468,9 @@ configure([":core", ":server"].collect{project(it)}){
}
publishing{
repositories{
maven{
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/anuken/mindustry")
credentials{
username = project.findProperty("gpr.user") ?: "Anuken"
password = project.findProperty("gpr.key") ?: System.getenv("PACKAGE_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
from(components.java)
publications{
maven(MavenPublication){
from components.java
}
}
}