Repository: qpid-jms Updated Branches: refs/heads/master 25b47e0b5 -> 1c69cb2f6
QPIDJMS-151 Depend on more specific netty modules instead of the complete netty-all module. Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/1c69cb2f Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/1c69cb2f Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/1c69cb2f Branch: refs/heads/master Commit: 1c69cb2f65a368111b1455611cead9d2be5dfa88 Parents: 25b47e0 Author: Timothy Bish <[email protected]> Authored: Tue Feb 23 15:50:04 2016 -0500 Committer: Timothy Bish <[email protected]> Committed: Tue Feb 23 15:50:23 2016 -0500 ---------------------------------------------------------------------- pom.xml | 22 +++++++++++++++++++++- qpid-jms-client/pom.xml | 18 +++++++++++++++++- 2 files changed, 38 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/1c69cb2f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1bf149b..a1c4a73 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,27 @@ </dependency> <dependency> <groupId>io.netty</groupId> - <artifactId>netty-all</artifactId> + <artifactId>netty-buffer</artifactId> + <version>${netty-version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-codec</artifactId> + <version>${netty-version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-common</artifactId> + <version>${netty-version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>${netty-version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport</artifactId> <version>${netty-version}</version> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/1c69cb2f/qpid-jms-client/pom.xml ---------------------------------------------------------------------- diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml index 35f340c..a7e3d6f 100644 --- a/qpid-jms-client/pom.xml +++ b/qpid-jms-client/pom.xml @@ -46,7 +46,23 @@ </dependency> <dependency> <groupId>io.netty</groupId> - <artifactId>netty-all</artifactId> + <artifactId>netty-buffer</artifactId> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-codec</artifactId> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-common</artifactId> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport</artifactId> </dependency> <!-- =================================== --> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
