Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

suppress maven progress output for Spring+Liberty #319

Merged
merged 1 commit into from
Sep 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions experimental/java-spring-boot2-liberty/image/Dockerfile-stack
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ COPY ./config /config
WORKDIR /project/

RUN mkdir -p /mvn/repository
RUN mvn -Dmaven.repo.local=/mvn/repository -N io.takari:maven:wrapper -Dmaven=$(mvn help:evaluate -Dexpression=maven.version -q -DforceStdout)
RUN mvn -Dmaven.repo.local=/mvn/repository install dependency:go-offline -DskipTests
RUN mvn -B -Dmaven.repo.local=/mvn/repository -N io.takari:maven:wrapper -Dmaven=$(mvn help:evaluate -Dexpression=maven.version -q -DforceStdout)
RUN mvn -B -Dmaven.repo.local=/mvn/repository install dependency:go-offline -DskipTests

WORKDIR /project/user-app

Expand All @@ -25,17 +25,17 @@ ENV APPSODY_WATCH_DIR=/project/user-app
ENV APPSODY_WATCH_IGNORE_DIR=/project/user-app/target
ENV APPSODY_WATCH_REGEX="^.*(.xml|.java|.properties)$"

ENV APPSODY_INSTALL="../validate.sh && mvn -Dmaven.repo.local=/mvn/repository install -DskipTests"
ENV APPSODY_INSTALL="../validate.sh && mvn -B -Dmaven.repo.local=/mvn/repository install -DskipTests"

ENV APPSODY_RUN="mvn -Dmaven.repo.local=/mvn/repository liberty:run"
ENV APPSODY_RUN="mvn -B -Dmaven.repo.local=/mvn/repository liberty:run"
ENV APPSODY_RUN_ON_CHANGE="mvn -Dmaven.repo.local=/mvn/repository package -DskipTests"
ENV APPSODY_RUN_KILL=false

ENV APPSODY_DEBUG="mvn -Dmaven.repo.local=/mvn/repository liberty:debug"
ENV APPSODY_DEBUG="mvn -B -Dmaven.repo.local=/mvn/repository liberty:debug"
ENV APPSODY_DEBUG_ON_CHANGE="mvn -Dmaven.repo.local=/mvn/repository package -DskipTests"
ENV APPSODY_DEBUG_KILL=false

ENV APPSODY_TEST="mvn -Dmaven.repo.local=/mvn/repository verify"
ENV APPSODY_TEST="mvn -B -Dmaven.repo.local=/mvn/repository verify"
ENV APPSODY_TEST_ON_CHANGE=""
ENV APPSODY_TEST_KILL=false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY . /project

WORKDIR /project/user-app

RUN mvn install -DskipTests
RUN mvn -B install -DskipTests

RUN cd target && \
unzip *.zip && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<groupId>dev.appsody</groupId>
<artifactId>java-spring-boot2-liberty</artifactId>
<version>0.1.6</version>
<version>0.1.7</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion experimental/java-spring-boot2-liberty/stack.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Spring Boot® on Open Liberty
version: 0.1.6
version: 0.1.7
description: Spring Boot on Open Liberty & OpenJ9 using Maven
license: Apache-2.0
language: java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>dev.appsody</groupId>
<artifactId>java-spring-boot2-liberty</artifactId>
<version>0.1.6</version>
<version>0.1.7</version>
</parent>

<groupId>dev.appsody.starter.java-spring-boot2-liberty</groupId>
Expand Down