Updated build.gradle

This commit is contained in:
RaphiMC 2023-06-30 23:56:06 +02:00
parent 8b628cad9f
commit a63f0d17b5
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94

View File

@ -71,6 +71,7 @@ publishing {
maven {
name = "Via"
url = "https://repo.viaversion.com/"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
@ -84,6 +85,28 @@ publishing {
version = project.maven_version
from components.java
pom {
name = "ViaLoader"
description = "Implementation of a ViaVersion based protocol translator platform"
url = "https://github.com/ViaVersion/ViaLoader"
licenses {
license {
name = "GPL-3.0 License"
url = "https://github.com/ViaVersion/ViaLoader/blob/main/LICENSE"
}
}
developers {
developer {
id = "RK_01"
}
}
scm {
connection = "scm:git:git://github.com/ViaVersion/ViaLoader.git"
developerConnection = "scm:git:ssh://github.com/ViaVersion/ViaLoader.git"
url = "https://github.com/ViaVersion/ViaLoader.git"
}
}
}
}
}