Skip to content

Commit

Permalink
Merge pull request #10 from rundeck-plugins/node-step-plugin
Browse files Browse the repository at this point in the history
new workflow node step
  • Loading branch information
ltamaster authored Nov 21, 2019
2 parents 1f20064 + b2162a5 commit 86f519b
Show file tree
Hide file tree
Showing 9 changed files with 1,177 additions and 584 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sudo: required
language: java
jdk:
- oraclejdk8
- openjdk8
before_install:
- sudo pip install codecov
after_success:
Expand All @@ -21,4 +21,4 @@ addons:
notification_email: ltoledo@rundeck.com
build_command_prepend: "gradle clean"
build_command: "gradle build"
branch_pattern: code-analysis
branch_pattern: code-analysis
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'java'

sourceCompatibility = 1.8
ext.rundeckPluginVersion = '1.2'
ext.pluginClassNames='edu.ohio.ais.rundeck.HttpWorkflowStepPlugin'
ext.pluginClassNames='edu.ohio.ais.rundeck.HttpWorkflowStepPlugin,edu.ohio.ais.rundeck.HttpWorkflowNodeStepPlugin'
ext.pluginName = 'Rundeck Http Step'
ext.pluginDescription = 'A workflow plugin that makes HTTP requests'

Expand Down Expand Up @@ -47,13 +47,19 @@ configurations{

dependencies {
compile 'org.rundeck:rundeck-core:3.0.+'

pluginLibs group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.8'
pluginLibs group: 'com.google.code.gson', name: 'gson', version:'2.8.5'
pluginLibs group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version:'1.13'

testCompile group: 'com.github.tomakehurst', name: 'wiremock-standalone', version:'2.23.2'
testCompile group: 'junit', name: 'junit', version:'4.12'

testCompile (
'org.mockito:mockito-all:1.9.5',
'org.powermock:powermock-module-junit4:1.5',
'org.powermock:powermock-api-mockito:1.5'
)
}


Expand Down
Loading

0 comments on commit 86f519b

Please sign in to comment.