diff options
Diffstat (limited to 'plugins/plugins-executor/plugins-executor-jruby/pom.xml')
-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> |