diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/pom.xml | 19 | ||||
-rw-r--r-- | plugins/plugins-executor/plugins-executor-jruby/pom.xml | 20 |
2 files changed, 32 insertions, 7 deletions
diff --git a/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/pom.xml b/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/pom.xml index 61abf52b4..3ad5d0b73 100644 --- a/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/pom.xml +++ b/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/pom.xml @@ -46,9 +46,20 @@ <version>3.2.0.Final</version> </dependency> <dependency> - <groupId>org.hornetq</groupId> - <artifactId>hornetq-jms-client</artifactId> - <version>2.3.25.Final</version> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-jms-client</artifactId> + <version>2.6.1</version> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + <version>4.1.25.Final</version> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> 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> |