Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Commit 7f3d350

Browse files
authored
Merge pull request #64 from ahormazabal/dev/cvepluginupdates
Exclude libraries affected by CVEs.
2 parents 37b1b2f + dfbef64 commit 7f3d350

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
language: java
2+
jdk:
3+
- openjdk8
24
before_cache:
35
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
46
cache:

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ext.pluginClassNames='com.dtolabs.rundeck.plugin.overthere.OTWinRMNodeExecutor,com.dtolabs.rundeck.plugin.overthere.OTWinRMFileCopier'
22

33
defaultTasks 'clean','build'
4-
version = '1.3.4-SNAPSHOT'
4+
version = '1.3.6-SNAPSHOT'
55
ext.rundeckPluginVersion= '1.1'
66
apply plugin: 'java'
77
apply plugin: 'idea'
@@ -43,6 +43,11 @@ dependencies {
4343
exclude( module: 'icu4j')
4444
exclude( module: 'jcl-over-slf4j')
4545
}
46+
// bump version brought by com.xebialabs.overthere, which is affected by CVE-2018-1000613
47+
pluginLibs ("org.bouncycastle:bcpkix-jdk15on:1.62") {
48+
exclude ( group: "org.bouncycastle", module: "bcprov-jdk15on")
49+
}
50+
4651
// pluginLibs(group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.3')
4752
pluginLibs(group: 'org.slf4j', name: 'slf4j-nop', version: '1.6.3')
4853

@@ -72,7 +77,7 @@ jar {
7277
'Rundeck-Plugin-Version': rundeckPluginVersion,
7378
'Rundeck-Plugin-Archive': 'true',
7479
'Rundeck-Plugin-Classnames': pluginClassNames,
75-
'Rundeck-Plugin-Libs': "${libList}",
80+
'Rundeck-Plugin-Libs': "${libList}",
7681
'Rundeck-Plugin-Name' : 'Rundeck WinRM',
7782
'Rundeck-Plugin-Description' : 'Rundeck Node Executor and File Copier plugins that uses WinRM to connect to Windows and execute commands. It uses the OverThere Library to provide the WinRM implementation, and uses Basic authentication over HTTPS.',
7883
'Rundeck-Plugin-Rundeck-Compatibility-Version': '2.3.2+',

0 commit comments

Comments
 (0)