diff options
author | liamfallon <liam.fallon@est.tech> | 2019-11-15 13:40:08 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-11-15 13:42:11 +0000 |
commit | c54feabfafaab64d56cf275fb1a474f0e830eba9 (patch) | |
tree | e4c47037eac78e0d52436732fc3f6e6158608e38 /plugins/plugins-executor/plugins-executor-jruby/pom.xml | |
parent | 40a1f22ff8d28e78b6512c0a10d454b37f015fdb (diff) |
Fix JRuby interpreter shutdown issue
The new version of JRuby fixes this issue. Also amended unit test to
check for shutdown and immediate recreation of JRuby interpreter.
Issue-ID: POLICY-1276
Change-Id: I723e0396985d3163b483e52fdaceb4b4fab7274b
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'plugins/plugins-executor/plugins-executor-jruby/pom.xml')
-rw-r--r-- | plugins/plugins-executor/plugins-executor-jruby/pom.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/plugins-executor/plugins-executor-jruby/pom.xml b/plugins/plugins-executor/plugins-executor-jruby/pom.xml index 72fd8cccf..976166bea 100644 --- a/plugins/plugins-executor/plugins-executor-jruby/pom.xml +++ b/plugins/plugins-executor/plugins-executor-jruby/pom.xml @@ -1,6 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. + Modifications Copyright (C) 2019 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -33,7 +34,7 @@ <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-core</artifactId> - <version>9.2.0.0</version> + <version>9.2.9.0</version> <exclusions> <exclusion> <groupId>org.jruby.extras</groupId> @@ -52,12 +53,12 @@ <dependency> <groupId>org.jruby.extras</groupId> <artifactId>bytelist</artifactId> - <version>1.0.13</version> + <version>1.0.15</version> </dependency> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jffi</artifactId> - <version>1.2.10</version> + <version>1.2.22</version> </dependency> </dependencies> |