Updated Branches: refs/heads/flume-1.3.0 c1183e1ab -> d5446d613
FLUME-1723. AsyncHBase and Avro bring in different versions of Netty. (Mike Percy via Hari Shreedharan) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/d5446d61 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/d5446d61 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/d5446d61 Branch: refs/heads/flume-1.3.0 Commit: d5446d613e75d4a731535ff5f87c04890565272c Parents: c1183e1 Author: Hari Shreedharan <[email protected]> Authored: Sat Nov 17 18:02:36 2012 -0800 Committer: Hari Shreedharan <[email protected]> Committed: Sat Nov 17 19:12:17 2012 -0800 ---------------------------------------------------------------------- flume-ng-core/pom.xml | 5 +++ flume-ng-sdk/pom.xml | 5 +++ flume-ng-sinks/flume-ng-hbase-sink/pom.xml | 7 ++++ pom.xml | 36 ++++++++++++++++------- 4 files changed, 42 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/d5446d61/flume-ng-core/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-core/pom.xml b/flume-ng-core/pom.xml index 7bf1d21..67298fe 100644 --- a/flume-ng-core/pom.xml +++ b/flume-ng-core/pom.xml @@ -164,6 +164,11 @@ limitations under the License. </dependency> <dependency> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + </dependency> + + <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> http://git-wip-us.apache.org/repos/asf/flume/blob/d5446d61/flume-ng-sdk/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-sdk/pom.xml b/flume-ng-sdk/pom.xml index 40a9d5d..b629667 100644 --- a/flume-ng-sdk/pom.xml +++ b/flume-ng-sdk/pom.xml @@ -100,5 +100,10 @@ limitations under the License. <artifactId>avro-ipc</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + </dependency> + </dependencies> </project> http://git-wip-us.apache.org/repos/asf/flume/blob/d5446d61/flume-ng-sinks/flume-ng-hbase-sink/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-sinks/flume-ng-hbase-sink/pom.xml b/flume-ng-sinks/flume-ng-hbase-sink/pom.xml index b6df51d..f8c15fc 100644 --- a/flume-ng-sinks/flume-ng-hbase-sink/pom.xml +++ b/flume-ng-sinks/flume-ng-hbase-sink/pom.xml @@ -68,10 +68,17 @@ <classifier>tests</classifier> <scope>test</scope> </dependency> + <dependency> <groupId>org.hbase</groupId> <artifactId>asynchbase</artifactId> </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> http://git-wip-us.apache.org/repos/asf/flume/blob/d5446d61/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c9f184e..24e45a4 100644 --- a/pom.xml +++ b/pom.xml @@ -676,6 +676,10 @@ limitations under the License. <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + </exclusion> </exclusions> </dependency> @@ -927,17 +931,27 @@ limitations under the License. <version>2.0.4</version> </dependency> - <dependency> - <groupId>org.hbase</groupId> - <artifactId>asynchbase</artifactId> - <version>1.2.0</version> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>log4j-over-slf4j</artifactId> - </exclusion> - </exclusions> - </dependency> + <dependency> + <groupId>org.hbase</groupId> + <artifactId>asynchbase</artifactId> + <version>1.2.0</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </exclusion> + <exclusion> + <groupId>org.jboss.netty</groupId> + <artifactId>netty</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + <version>3.4.0.Final</version> + </dependency> </dependencies> </dependencyManagement>
