mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 05:25:50 +00:00
Make maven more quiet
This commit is contained in:
parent
90d10b7043
commit
f8f68bfb82
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ before_script:
|
||||||
- docker-compose up -d
|
- docker-compose up -d
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- mvn verify -Dskip.surefire.tests
|
- mvn verify -Dskip.surefire.tests -q --batch-mode
|
||||||
# - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
|
# - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
|
|
|
@ -7,7 +7,7 @@ WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Build the project
|
# Build the project
|
||||||
RUN mvn package -Dskip.failsafe.tests
|
RUN mvn package -Dskip.failsafe.tests -q --batch-mode
|
||||||
|
|
||||||
# Make the jar executable
|
# Make the jar executable
|
||||||
RUN sh -c 'touch target/spring-petclinic-*.jar'
|
RUN sh -c 'touch target/spring-petclinic-*.jar'
|
||||||
|
|
Loading…
Reference in a new issue