mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15: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
|
||||
|
||||
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
|
||||
|
||||
after_script:
|
||||
|
|
|
@ -7,7 +7,7 @@ WORKDIR /app
|
|||
COPY . .
|
||||
|
||||
# Build the project
|
||||
RUN mvn package -Dskip.failsafe.tests
|
||||
RUN mvn package -Dskip.failsafe.tests -q --batch-mode
|
||||
|
||||
# Make the jar executable
|
||||
RUN sh -c 'touch target/spring-petclinic-*.jar'
|
||||
|
|
Loading…
Reference in a new issue