diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-06-21 19:27:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-06-21 19:27:26 +0000 |
commit | f67a5339149db0060c27c0a32cd631b25e1ee0bf (patch) | |
tree | 7f5ca0c337fe2fff59d9ea80328572da288a6001 | |
parent | 6dd2ac76d046e98104f4314ea0c529961ef3e35e (diff) | |
parent | 29992b16ffdde0bde1f2f315624cb30ce0d0773b (diff) |
Merge "Reduce level of vulnerability on JRuby plugin"
-rw-r--r-- | plugins/plugins-executor/plugins-executor-jruby/pom.xml | 20 |
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> |