diff --git a/build.gradle b/build.gradle index 9c16aa6..f7091e6 100644 --- a/build.gradle +++ b/build.gradle @@ -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" + } + } } } }