Skip to content

Commit

Permalink
Fix package name and add maven publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
ahormazabal committed Apr 16, 2024
1 parent 8dc7424 commit 3d8303a
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 3d8303a

Please sign in to comment.