Skip to content

Commit 9610e25

Browse files
authored
Merge pull request #3 from sjrd218/plugin-metadata
Add plugin metadata
2 parents 0c03f91 + 93ead50 commit 9610e25

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ext.rundeckPluginVersion = '1.2'
2222
ext.pluginClassNames=
2323
'com.rundeck.plugins.aws.S3ResourceModelSource'
2424
ext.pluginName = 'S3 resource Model Source'
25-
ext.pluginDescription = 'AWS S3 Resource Model Source'
25+
ext.pluginDescription = 'Use Amazon S3 to store resources model file.'
2626

2727
apply plugin: 'java'
2828
apply plugin: 'groovy'
@@ -61,6 +61,14 @@ jar {
6161
from "$buildDir/output"
6262
manifest {
6363
def libList = configurations.pluginLibs.collect{'lib/' + it.name}.join(' ')
64+
attributes 'Rundeck-Plugin-Name' : pluginName
65+
attributes 'Rundeck-Plugin-Description' : pluginDescription
66+
attributes 'Rundeck-Plugin-Rundeck-Compatibility-Version': '2.10.0+'
67+
attributes 'Rundeck-Plugin-Tags': 'java,resource model,aws,s3'
68+
attributes 'Rundeck-Plugin-License': 'Apache 2.0'
69+
attributes 'Rundeck-Plugin-Source-Link': 'https://github.com/rundeck-plugins/aws-s3-model-source'
70+
attributes 'Rundeck-Plugin-Target-Host-Compatibility': 'all'
71+
attributes 'Rundeck-Plugin-Author': 'Rundeck, Inc.'
6472
attributes 'Rundeck-Plugin-Classnames': pluginClassNames
6573
attributes 'Rundeck-Plugin-File-Version': version
6674
attributes 'Rundeck-Plugin-Version': rundeckPluginVersion

0 commit comments

Comments
 (0)