This is an automated email from the ASF dual-hosted git repository.
janardhan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 9a53d3b [MINOR] Silence mvn package download info (#1465)
9a53d3b is described below
commit 9a53d3be8e9b471bd04df106a2fc1ab5a6d81080
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Wed Nov 24 22:27:42 2021 +0530
[MINOR] Silence mvn package download info (#1465)
---
docker/pythonsysds.Dockerfile | 2 +-
docker/sysds.Dockerfile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docker/pythonsysds.Dockerfile b/docker/pythonsysds.Dockerfile
index c5a5bd8..c668854 100644
--- a/docker/pythonsysds.Dockerfile
+++ b/docker/pythonsysds.Dockerfile
@@ -50,7 +50,7 @@ RUN apt-get update -qq \
&& mv apache-maven-$MAVEN_VERSION /usr/lib/mvn \
&& git clone --depth 1 https://github.com/apache/systemds.git systemds
&& \
cd /usr/src/systemds/ && \
- mvn clean package -P distribution && \
+ mvn -ntp clean package -P distribution && \
cd /usr/src/systemds/src/main/python && \
apt-get install -y --no-install-recommends \
python3 python3-pip && \
diff --git a/docker/sysds.Dockerfile b/docker/sysds.Dockerfile
index c1c71d3..e17bc91 100644
--- a/docker/sysds.Dockerfile
+++ b/docker/sysds.Dockerfile
@@ -50,7 +50,7 @@ RUN apt-get update -qq \
&& mv apache-maven-$MAVEN_VERSION /usr/lib/mvn \
&& git clone --depth 1 https://github.com/apache/systemds.git systemds
&& \
cd /usr/src/systemds/ && \
- mvn clean package -P distribution && \
+ mvn -ntp clean package -P distribution && \
rm -r .git && \
rm -r .github && \
rm -r target/javadoc** && \