Skip to content

Commit

Permalink
Fix CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Apr 20, 2023
1 parent c1f39a2 commit 5c9f16c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ commands:
- run:
name: Initializing Maven
command: |
mvn --version
mkdir -p ./.mvn
echo "-e -B -DtrimStackTrace=false --settings $( pwd )/.circleci/maven-settings.xml" > ./.mvn/maven.config
cat ./.mvn/maven.config
echo "-e" >> ./.mvn/maven.config
echo "-B" >> ./.mvn/maven.config
echo "-DtrimStackTrace=false" >> ./.mvn/maven.config
echo "--settings" >> ./.mvn/maven.config
echo "$( pwd )/.circleci/maven-settings.xml" >> ./.mvn/maven.config
mvn --version
#----------------------------------------------------------------------------
Expand Down

0 comments on commit 5c9f16c

Please sign in to comment.