Skip to content

Commit

Permalink
Merge pull request #3 from sjrd218/plugin-metadata
Browse files Browse the repository at this point in the history
Add plugin metadata
  • Loading branch information
sjrd218 authored Apr 18, 2019
2 parents 0c03f91 + 93ead50 commit 9610e25
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ext.rundeckPluginVersion = '1.2'
ext.pluginClassNames=
'com.rundeck.plugins.aws.S3ResourceModelSource'
ext.pluginName = 'S3 resource Model Source'
ext.pluginDescription = 'AWS S3 Resource Model Source'
ext.pluginDescription = 'Use Amazon S3 to store resources model file.'

apply plugin: 'java'
apply plugin: 'groovy'
Expand Down Expand Up @@ -61,6 +61,14 @@ jar {
from "$buildDir/output"
manifest {
def libList = configurations.pluginLibs.collect{'lib/' + it.name}.join(' ')
attributes 'Rundeck-Plugin-Name' : pluginName
attributes 'Rundeck-Plugin-Description' : pluginDescription
attributes 'Rundeck-Plugin-Rundeck-Compatibility-Version': '2.10.0+'
attributes 'Rundeck-Plugin-Tags': 'java,resource model,aws,s3'
attributes 'Rundeck-Plugin-License': 'Apache 2.0'
attributes 'Rundeck-Plugin-Source-Link': 'https://github.com/rundeck-plugins/aws-s3-model-source'
attributes 'Rundeck-Plugin-Target-Host-Compatibility': 'all'
attributes 'Rundeck-Plugin-Author': 'Rundeck, Inc.'
attributes 'Rundeck-Plugin-Classnames': pluginClassNames
attributes 'Rundeck-Plugin-File-Version': version
attributes 'Rundeck-Plugin-Version': rundeckPluginVersion
Expand Down

0 comments on commit 9610e25

Please sign in to comment.