You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2019/11/26 04:54:51 UTC

[incubator-hivemall] branch master updated: [HIVEMALL-283] Bump up netty version to 4.1.42.Final

This is an automated email from the ASF dual-hosted git repository.

myui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git


The following commit(s) were added to refs/heads/master by this push:
     new 7279728  [HIVEMALL-283] Bump up netty version to 4.1.42.Final
7279728 is described below

commit 72797286f844feea961aa3e60a27297358286c53
Author: Makoto Yui <my...@apache.org>
AuthorDate: Tue Nov 26 13:54:43 2019 +0900

    [HIVEMALL-283] Bump up netty version to 4.1.42.Final
    
    ## What changes were proposed in this pull request?
    
    Bump up netty version to 4.1.42.Final
    
    This closes #206 and closes #207
    
    ## What type of PR is it?
    
    Hot Fix
    
    ## What is the Jira issue?
    
    https://issues.apache.org/jira/browse/HIVEMALL-283
    
    ## How was this patch tested?
    
    unit tests
    
    ## Checklist
    
    (Please remove this section if not needed; check `x` for YES, blank for NO)
    
    - [x] Did you apply source code formatter, i.e., `./bin/format_code.sh`, for your commit?
    - [ ] Did you run system tests on Hive (or Spark)?
    
    Author: Makoto Yui <my...@apache.org>
    
    Closes #219 from myui/HIVEMALL-283.
---
 core/pom.xml    | 2 +-
 mixserv/pom.xml | 4 ++--
 pom.xml         | 1 +
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/core/pom.xml b/core/pom.xml
index 9492b36..04a12c9 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -107,7 +107,7 @@
 			<!-- required for mixing client -->
 			<groupId>io.netty</groupId>
 			<artifactId>netty-all</artifactId>
-			<version>4.0.56.Final</version>
+			<version>${netty.version}</version>
 			<scope>compile</scope>
 		</dependency>
 		<dependency>
diff --git a/mixserv/pom.xml b/mixserv/pom.xml
index d1c0f6b..4b2fa91 100644
--- a/mixserv/pom.xml
+++ b/mixserv/pom.xml
@@ -104,10 +104,10 @@
 			<scope>compile</scope>
 		</dependency>
 		<dependency>
-			<groupId>io.netty</groupId>
 			<!-- required for mixing -->
+			<groupId>io.netty</groupId>
 			<artifactId>netty-all</artifactId>
-			<version>4.0.23.Final</version>
+			<version>${netty.version}</version>
 			<scope>compile</scope>
 		</dependency>
 
diff --git a/pom.xml b/pom.xml
index ec30d1c..f47bc9d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -273,6 +273,7 @@
 		<dependency.locations.enabled>false</dependency.locations.enabled>
 		<maven-enforcer.requireMavenVersion>[3.3.1,)</maven-enforcer.requireMavenVersion>
 		<surefire.version>2.19.1</surefire.version>
+		<netty.version>4.1.42.Final</netty.version>
 	</properties>
 
 	<distributionManagement>