Skip to content

Commit

Permalink
Merge pull request #8 from ltamaster/master
Browse files Browse the repository at this point in the history
Adding local-script to the build process
ahonor authored Apr 17, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents ac3ad49 + 868f40d commit 7fad9f8
Showing 5 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
/.idea/
/file/build/
/waitfor/build/
/local-script/build/

# Ignore Gradle GUI config
gradle-app.setting
4 changes: 2 additions & 2 deletions file/build.gradle
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX")
ext.archivesBaseName = "file"
ext.pluginBaseFolder ="."

project.version = scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-v' + version
project.version = 'v' + scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-' + version

apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle'
10 changes: 5 additions & 5 deletions local-script/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ext.pluginName = 'nixy-local-script'
ext.pluginDescription = "execute a script locally"
ext.pluginName = 'nixy-step-plugins'
ext.pluginDescription = "executes the puppet apply command on each node matching the Job node filter"
ext.sopsCopyright = "© 2018, Rundeck, Inc."
ext.sopsUrl = "http://rundeck.com"
ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX")
ext.archivesBaseName ="waitfor"
ext.archivesBaseName ="local-script"
ext.pluginBaseFolder ="."

project.version = scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-v' + version
project.version = 'v' + scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-' + version

apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle'

2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include 'waitfor', 'file'
include 'waitfor', 'file', 'local-script'

4 changes: 2 additions & 2 deletions waitfor/build.gradle
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@ ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX")
ext.archivesBaseName ="waitfor"
ext.pluginBaseFolder ="."

project.version = scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-v' + version
project.version = 'v' + scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-' + version

apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle'

0 comments on commit 7fad9f8

Please sign in to comment.