Skip to content

Commit

Permalink
Merge pull request #4 from sjrd218/plugin-metadata
Browse files Browse the repository at this point in the history
Add plugin metadata
  • Loading branch information
ltamaster authored Feb 1, 2019
2 parents 459581c + a3a4f67 commit 7fc4c2a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ jar {
//include contents of output dir
from "$buildDir/output"
manifest {
attributes 'Rundeck-Plugin-Name' : 'Slack Notification'
attributes 'Rundeck-Plugin-Description' : 'Sends Rundeck notification messages to a slack channel.'
attributes 'Rundeck-Plugin-Rundeck-Compatibility-Version': '2.8.2+'
attributes 'Rundeck-Plugin-Tags': 'java,notification,slack'
attributes 'Rundeck-Plugin-License': 'Apache 2.0'
attributes 'Rundeck-Plugin-Source-Link': 'https://github.com/rundeck-plugins/slack-incoming-webhook-plugin'
attributes 'Rundeck-Plugin-Target-Host-Compatibility': 'all'
attributes 'Rundeck-Plugin-Author': 'Rundeck, Inc.'
attributes 'Rundeck-Plugin-Version': '1.2', 'Rundeck-Plugin-Archive': 'true','Rundeck-Plugin-File-Version': "${project.version}"
//create space-separated list of pluginLibs
def libList = configurations.pluginLibs.collect{'lib/'+it.name}.join(' ')
Expand Down

0 comments on commit 7fc4c2a

Please sign in to comment.