Skip to content

Commit

Permalink
Merge pull request #39 from rundeck-plugins/RUN-2277
Browse files Browse the repository at this point in the history
Fix package name and add maven publishing
  • Loading branch information
ahormazabal authored Apr 16, 2024
2 parents 8dc7424 + 3d8303a commit 23761c6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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=
Expand Down Expand Up @@ -103,3 +104,12 @@ jar {
dependsOn(copyToLib)
}

publishing {
publications {
maven(MavenPublication) {
artifactId = 'rundeck-azure-plugin'
from components.java
}
}
}

0 comments on commit 23761c6

Please sign in to comment.