Updated build.gradle

This commit is contained in:
RaphiMC 2023-06-30 23:51:40 +02:00
parent b9af38e9f8
commit 5ecaf3dd6d
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94

View File

@ -48,6 +48,7 @@ publishing {
maven {
name = "Via"
url = "https://repo.viaversion.com/"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
@ -61,6 +62,28 @@ publishing {
version = project.maven_version
from components.java
pom {
name = "ViaLegacy"
description = "ViaVersion addon to add support for EVERY Minecraft server version (Classic, Alpha, Beta, Release)"
url = "https://github.com/ViaVersion/ViaLegacy"
licenses {
license {
name = "GPL-3.0 License"
url = "https://github.com/ViaVersion/ViaLegacy/blob/main/LICENSE"
}
}
developers {
developer {
id = "RK_01"
}
}
scm {
connection = "scm:git:git://github.com/ViaVersion/ViaLegacy.git"
developerConnection = "scm:git:ssh://github.com/ViaVersion/ViaLegacy.git"
url = "https://github.com/ViaVersion/ViaLegacy.git"
}
}
}
}
}