-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (29 loc) · 1.09 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version = '0.2.0'
defaultTasks 'clean','build'
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'idea'
sourceCompatibility = 1.8
ext.rundeckPluginVersion= '2.0'
ext.rundeckVersion= '3.0.x'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'org.rundeck:rundeck-core:3.1.0+'
compile "org.codehaus.groovy:groovy-all:2.4.15"
testCompile "org.spockframework:spock-core:1.0-groovy-2.4"
}
ext.pluginClassNames='com.plugin.groovyscript.GroovyScriptStepPlugin,com.plugin.groovyscript.GroovyScriptNodeStepPlugin'
jar {
manifest {
attributes 'Rundeck-Plugin-Classnames': pluginClassNames
attributes 'Rundeck-Plugin-File-Version': version
attributes 'Rundeck-Plugin-Name': 'Groovy Script'
attributes 'Rundeck-Plugin-Description': 'Executes a groovy script as part of a Rundeck workflow.'
attributes 'Rundeck-Plugin-Rundeck-Compatibility-Version': '3.1.x'
attributes 'Rundeck-Plugin-Tags': 'java,workflow,step'
attributes 'Rundeck-Plugin-Version': rundeckPluginVersion, 'Rundeck-Plugin-Archive': 'true'
}
}