From 415e530b7a3d81bfa1644b98af62a3719d6e3092 Mon Sep 17 00:00:00 2001 From: Timothy Bish Date: Tue, 24 Oct 2017 18:15:53 -0400 Subject: [PATCH] ARTEMIS-1477 Add classifiers to the native transports The changes to remove netty all removes the classifiers that add the dependency to the netty transport that includes the compiled native library wrapper. Add those classifiers back in. --- artemis-core-client/pom.xml | 6 ++++-- pom.xml | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/artemis-core-client/pom.xml b/artemis-core-client/pom.xml index 8220f660abf..06141d62eed 100644 --- a/artemis-core-client/pom.xml +++ b/artemis-core-client/pom.xml @@ -74,11 +74,13 @@ io.netty - netty-transport-native-kqueue + netty-transport-native-epoll + ${netty-transport-native-epoll-classifier} io.netty - netty-transport-native-epoll + netty-transport-native-kqueue + ${netty-transport-native-kqueue-classifier} io.netty diff --git a/pom.xml b/pom.xml index 886ab7a4236..73e39d41984 100644 --- a/pom.xml +++ b/pom.xml @@ -174,6 +174,9 @@ 1.2 1.0 + + linux-x86_64 + osx-x86_64 @@ -496,12 +499,14 @@ io.netty netty-transport-native-epoll ${netty.version} + ${netty-transport-native-epoll-classifier} io.netty netty-transport-native-kqueue ${netty.version} + ${netty-transport-native-kqueue-classifier}