Skip to content

Commit

Permalink
Merge pull request #89 from rundeck-plugins/enh/RUN-1290_secure-winrm…
Browse files Browse the repository at this point in the history
…_221024

RUN-1290: Interpreter select + update build
  • Loading branch information
qualman authored Oct 27, 2022
2 parents 1a2622f + 05d4bff commit 8e67b09
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
21 changes: 10 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,9 @@ buildscript {
}
}
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.9.3'
id 'pl.allegro.tech.build.axion-release' version '1.13.4'
}

ext.pluginName = 'Python Winrm Node Executor/File Copier Plugin'
ext.pluginDescription = "Connect to remote windows nodes using WINRM"
ext.sopsCopyright = "© 2017, Rundeck, Inc."
ext.sopsUrl = "http://rundeck.com"
ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX")
ext.archivesBaseName = "py-winrm-plugin"
ext.pluginBaseFolder = "."


scmVersion {
ignoreUncommittedChanges = true
tag {
Expand All @@ -33,8 +24,16 @@ scmVersion {
}
}

ext.pluginName = 'Python Winrm Node Executor/File Copier Plugin'
ext.pluginDescription = "Connect to remote windows nodes using WINRM"
ext.sopsCopyright = "© 2022, Pagerduty, Inc."
ext.sopsUrl = "https://pagerduty.com"
ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX")
ext.archivesBaseName = "py-winrm-plugin"
ext.pluginBaseFolder = "."

project.version = scmVersion.version

ext.archiveFilename = ext.archivesBaseName + '-' + version

apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle'
apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/gradle-5.6/build.gradle'
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
9 changes: 6 additions & 3 deletions plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ providers:
- name: interpreter
title: Python Interpreter
description: "Python Interpreter (Default: python)"
type: String
type: Select
values: "python,python2,python3"
default: "python"
required: true
scope: Instance
Expand Down Expand Up @@ -194,7 +195,8 @@ providers:
- name: interpreter
title: Python Interpreter
description: "Python Interpreter (Default: python)"
type: String
type: Select
values: "python,python2,python3"
default: "python"
required: true
scope: Instance
Expand Down Expand Up @@ -324,7 +326,8 @@ providers:
- name: interpreter
title: Python Interpreter
description: "Python Interpreter (Default: python)"
type: String
type: Select
values: "python,python2,python3"
default: "python"
required: true
scope: Instance
Expand Down

0 comments on commit 8e67b09

Please sign in to comment.