1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2025-02-07 13:08:25 +00:00

Do not log download progress during build

This cuts down on the verbosity for at least some CI build logs.
This commit is contained in:
Olaf Meeuwissen 2018-11-15 21:41:34 +09:00
parent f0b05ab711
commit d73dea3d58
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ COPY pom.xml /app/
COPY src /app/src/
WORKDIR /app
RUN mvn package
RUN mvn --batch-mode package
########################################################################################

View File

@ -4,7 +4,7 @@ COPY pom.xml /app/
COPY src /app/src/
WORKDIR /app
RUN mvn package
RUN mvn --batch-mode package
########################################################################################