aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2018-06-21 19:27:26 +0000
committerGerrit Code Review <gerrit@onap.org>2018-06-21 19:27:26 +0000
commitf67a5339149db0060c27c0a32cd631b25e1ee0bf (patch)
tree7f5ca0c337fe2fff59d9ea80328572da288a6001
parent6dd2ac76d046e98104f4314ea0c529961ef3e35e (diff)
parent29992b16ffdde0bde1f2f315624cb30ce0d0773b (diff)
Merge "Reduce level of vulnerability on JRuby plugin"
-rw-r--r--plugins/plugins-executor/plugins-executor-jruby/pom.xml20
1 files changed, 17 insertions, 3 deletions
diff --git a/plugins/plugins-executor/plugins-executor-jruby/pom.xml b/plugins/plugins-executor/plugins-executor-jruby/pom.xml
index c9284a20d..c9f72fc07 100644
--- a/plugins/plugins-executor/plugins-executor-jruby/pom.xml
+++ b/plugins/plugins-executor/plugins-executor-jruby/pom.xml
@@ -37,8 +37,22 @@
<dependencies>
<dependency>
<groupId>org.jruby</groupId>
- <artifactId>jruby-complete</artifactId>
- <version>1.7.26</version>
+ <artifactId>jruby</artifactId>
+ <version>9.2.0.0</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jruby.extras</groupId>
+ <artifactId>bytelist</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.jruby</groupId>
+ <artifactId>dirgra</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.jruby</groupId>
+ <artifactId>jruby-stdlib</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
-</project> \ No newline at end of file
+</project>