From 5081b43b5ffe2975a30c79d7855175112e47d672 Mon Sep 17 00:00:00 2001 From: Jian Li Date: Fri, 11 Aug 2023 10:47:01 -0700 Subject: [PATCH] upgrade maven version from 3.9.3 to 3.9.4 --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4405dc..d93944e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [3.0.14] - 2023-08-11 +### Changed +- Upgrade Maven version from `3.9.3` to `3.9.4` as the older version no longer supported.(https://dlcdn.apache.org/maven/maven-3/) + ## [3.0.13] - 2023-08-09 ### Added - [issue-118](https://github.com/ExpediaGroup/apiary-metastore-docker/issues/118) Added variable `ENABLE_HIVE_LOCK_HOUSE_KEEPER` to support hive lock house keeper. See more details here: apache/iceberg#2301 diff --git a/Dockerfile b/Dockerfile index b6ef04d..ca72ea3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ wget -q https://search.maven.org/remotecontent?filepath=com/kstruct/gethostname4 wget -q https://search.maven.org/remotecontent?filepath=com/sun/jna/jna/${JNA_VERSION}/jna-${JNA_VERSION}.jar -O jna-${JNA_VERSION}.jar && \ wget -q https://search.maven.org/remotecontent?filepath=io/prometheus/jmx/jmx_prometheus_javaagent/${EXPORTER_VERSION}/jmx_prometheus_javaagent-${EXPORTER_VERSION}.jar -O jmx_prometheus_javaagent-${EXPORTER_VERSION}.jar -ENV MAVEN_VERSION 3.9.3 +ENV MAVEN_VERSION 3.9.4 RUN wget -q -O - https://dlcdn.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz | tar -C /opt -xzf - && \ ln -sf /opt/apache-maven-${MAVEN_VERSION}/bin/mvn /bin/mvn