Skip to content

Commit 3d8303a

Browse files
committed
Fix package name and add maven publishing
1 parent 8dc7424 commit 3d8303a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

build.gradle

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
plugins {
22
id 'pl.allegro.tech.build.axion-release' version '1.14.1'
3+
id 'maven-publish'
34
}
45

5-
group 'com.rundeck'
6+
group = 'com.github.rundeck-plugins'
67

78
ext.rundeckPluginVersion = '1.2'
89
ext.pluginClassNames=
@@ -103,3 +104,12 @@ jar {
103104
dependsOn(copyToLib)
104105
}
105106

107+
publishing {
108+
publications {
109+
maven(MavenPublication) {
110+
artifactId = 'rundeck-azure-plugin'
111+
from components.java
112+
}
113+
}
114+
}
115+

0 commit comments

Comments
 (0)