We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc7424 commit 3d8303aCopy full SHA for 3d8303a
build.gradle
@@ -1,8 +1,9 @@
1
plugins {
2
id 'pl.allegro.tech.build.axion-release' version '1.14.1'
3
+ id 'maven-publish'
4
}
5
-group 'com.rundeck'
6
+group = 'com.github.rundeck-plugins'
7
8
ext.rundeckPluginVersion = '1.2'
9
ext.pluginClassNames=
@@ -103,3 +104,12 @@ jar {
103
104
dependsOn(copyToLib)
105
106
107
+publishing {
108
+ publications {
109
+ maven(MavenPublication) {
110
+ artifactId = 'rundeck-azure-plugin'
111
+ from components.java
112
+ }
113
114
+}
115
+
0 commit comments