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 vertx #317

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
10 changes: 5 additions & 5 deletions experimental/vertx/image/Dockerfile-stack
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ COPY ./LICENSE /licenses/
COPY ./project /project
COPY ./config /config
WORKDIR /project/
RUN mvn install dependency:go-offline -DskipTests
RUN mvn -B install dependency:go-offline -DskipTests

ENV APPSODY_USER_RUN_AS_LOCAL=true

ENV APPSODY_MOUNTS=".:/project/user-app/;~/.m2/repository:/.m2/repository"
ENV APPSODY_DEPS=

ENV APPSODY_RUN="mvn compile vertx:run"
ENV APPSODY_RUN="mvn -B compile vertx:run"
ENV APPSODY_RUN_ON_CHANGE=""
ENV APPSODY_RUN_KILL=false

ENV APPSODY_DEBUG="mvn compile vertx:debug"
ENV APPSODY_DEBUG="mvn -B compile vertx:debug"
ENV APPSODY_DEBUG_ON_CHANGE=""
ENV APPSODY_DEBUG_KILL=false

ENV APPSODY_TEST="mvn test"
ENV APPSODY_TEST_ON_CHANGE="mvn test"
ENV APPSODY_TEST="mvn -B test"
ENV APPSODY_TEST_ON_CHANGE="mvn -B test"
ENV APPSODY_TEST_KILL=true

WORKDIR /project/user-app
Expand Down
2 changes: 1 addition & 1 deletion experimental/vertx/image/project/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY . /project
WORKDIR /project/user-app
COPY ./user-app/src ./src
COPY ./user-app/pom.xml ./
RUN mvn clean package
RUN mvn -B clean package

FROM adoptopenjdk:8-jre-openj9

Expand Down
2 changes: 1 addition & 1 deletion experimental/vertx/image/project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>dev.appsody</groupId>
<artifactId>vertx</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion experimental/vertx/stack.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Eclipse Vert.x
version: 0.1.0
version: 0.1.1
description: Eclipse Vert.x runtime for running Java applications
license: Eclipse Public License - Version 2.0
language: java
Expand Down
2 changes: 1 addition & 1 deletion experimental/vertx/templates/default/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.appsody</groupId>
<artifactId>vertx</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
</parent>

<groupId>org.acme.quickstart</groupId>
Expand Down