diff --git a/build.gradle b/build.gradle index ab60bc0..befbc4f 100644 --- a/build.gradle +++ b/build.gradle @@ -158,6 +158,7 @@ publishing { maven { name = "Via" url = "https://repo.viaversion.com/" + credentials(PasswordCredentials) authentication { basic(BasicAuthentication) @@ -171,6 +172,28 @@ publishing { version = project.maven_version from components.java + + pom { + name = "ViaProxy" + description = "Standalone proxy which allows players to join EVERY Minecraft server version (Classic, Alpha, Beta, Release, Bedrock)" + url = "https://github.com/ViaVersion/ViaProxy" + licenses { + license { + name = "GPL-3.0 License" + url = "https://github.com/ViaVersion/ViaProxy/blob/main/LICENSE" + } + } + developers { + developer { + id = "RK_01" + } + } + scm { + connection = "scm:git:git://github.com/ViaVersion/ViaProxy.git" + developerConnection = "scm:git:ssh://github.com/ViaVersion/ViaProxy.git" + url = "https://github.com/ViaVersion/ViaProxy.git" + } + } } } }