This is an automated email from the ASF dual-hosted git repository.
yong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
The following commit(s) were added to refs/heads/master by this push:
new 94f247c5a3 Upgrade maven version in release docker image (#3625)
94f247c5a3 is described below
commit 94f247c5a3f042fa45823c0bb2eee3c688ff82a5
Author: Yong Zhang <[email protected]>
AuthorDate: Wed Nov 9 15:59:25 2022 +0800
Upgrade maven version in release docker image (#3625)
---
*Motivation*
When using the lower maven version to build bookkeeper, we will meet the
license problem in the binary package.
```
ch.qos.logback-logback-classic-1.2.10.jar unaccounted for in LICENSE
ch.qos.logback-logback-core-1.2.10.jar unaccounted for in LICENSE
io.netty-netty-tcnative-2.0.48.Final.jar unaccounted for in LICENSE
io.netty-netty-transport-native-epoll-4.1.75.Final.jar unaccounted for in
LICENSE
```
---
dev/docker/Dockerfile | 2 +-
dev/release/Dockerfile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev/docker/Dockerfile b/dev/docker/Dockerfile
index 445f569a8f..09a1186fd1 100644
--- a/dev/docker/Dockerfile
+++ b/dev/docker/Dockerfile
@@ -17,7 +17,7 @@
# under the License.
#
-FROM maven:3.6.1-jdk-11
+FROM maven:3.8.6-jdk-11
RUN apt-get update
RUN apt-get install -y g++ cmake
diff --git a/dev/release/Dockerfile b/dev/release/Dockerfile
index e09ecb038c..2bcd90a40b 100644
--- a/dev/release/Dockerfile
+++ b/dev/release/Dockerfile
@@ -17,7 +17,7 @@
# under the License.
#
-FROM maven:3.6.1-jdk-8
+FROM maven:3.8.6-jdk-8
RUN apt-get update
RUN apt-get install -y g++ cmake gnupg2 vim subversion