From 3d8303a9f36c6eae68a4d94c46588dc74585a8ee Mon Sep 17 00:00:00 2001 From: Alberto Hormazabal Date: Tue, 16 Apr 2024 16:55:44 -0400 Subject: [PATCH] Fix package name and add maven publishing --- build.gradle | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0d8a089..0c29c7d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,9 @@ plugins { id 'pl.allegro.tech.build.axion-release' version '1.14.1' + id 'maven-publish' } -group 'com.rundeck' +group = 'com.github.rundeck-plugins' ext.rundeckPluginVersion = '1.2' ext.pluginClassNames= @@ -103,3 +104,12 @@ jar { dependsOn(copyToLib) } +publishing { + publications { + maven(MavenPublication) { + artifactId = 'rundeck-azure-plugin' + from components.java + } + } +} +