From fa7693528fd5fdafa81ffd17841353109d24a63f Mon Sep 17 00:00:00 2001 From: LMBishop <13875753+LMBishop@users.noreply.github.com> Date: Thu, 10 Jun 2021 14:01:52 +0100 Subject: Add publishing --- build.gradle | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index fa087695..a4cf2ad9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ plugins { id 'java' id 'com.github.johnrengelman.shadow' version '6.1.0' + id 'maven-publish' } group = 'com.leonardobishop' @@ -98,7 +99,29 @@ shadowJar { archiveClassifier.set('') } -jar.enabled = false +publishing { + publications { + maven(MavenPublication) { + groupId = 'com.leonardobishop' + artifactId = 'quests' + version = project.version + + from components.java + } + } + + repositories { + maven { + credentials { + username = project.findProperty('mavenUser') ?: System.getenv('MAVEN_USER') + password = project.findProperty('mavenPassword') ?: System.getenv('MAVEN_PASSWORD') + } + url = "https://repo.leonardobishop.com/releases/" + } + } +} + +jar.enabled = true tasks.build { dependsOn(tasks.shadowJar) -- cgit v1.2.3-70-g09d2