Skip to content

Commit

Permalink
Fixing circleci Maven Wrapper invocation and synchronizing build with…
Browse files Browse the repository at this point in the history
… GH actions (fixes #728)
  • Loading branch information
marcelmay committed May 30, 2024
1 parent 40927dc commit 3a364e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- restore_cache:
key: greenmail-{{ checksum "pom.xml" }}

- run: ./mvwn -V clean package -DskipTests dependency:resolve-plugins dependency:go-offline
- run: ./mvnw --batch-mode -V package -DskipTests dependency:resolve-plugins dependency:go-offline

- save_cache:
paths:
- ~/.m2
key: greenmail-{{ checksum "pom.xml" }}

- run:
command: ./mvwn -V clean install
command: ./mvnw --batch-mode -V --fail-at-end --errors install
no_output_timeout: 15m

- run:
Expand Down Expand Up @@ -59,15 +59,15 @@ jobs:
- restore_cache:
key: greenmail-{{ checksum "pom.xml" }}

- run: ./mvwn -V clean package -DskipTests dependency:resolve-plugins dependency:go-offline
- run: ./mvnw --batch-mode -V package -DskipTests dependency:resolve-plugins dependency:go-offline

- save_cache:
paths:
- ~/.m2
key: greenmail-{{ checksum "pom.xml" }}

- run:
command: ./mvwn -V clean install
command: ./mvnw --batch-mode -V --fail-at-end --errors install
no_output_timeout: 15m

- run:
Expand Down Expand Up @@ -100,15 +100,15 @@ jobs:
- restore_cache:
key: greenmail-{{ checksum "pom.xml" }}

- run: ./mvnw -V clean package -DskipTests dependency:resolve-plugins dependency:go-offline
- run: ./mvnw --batch-mode -V package -DskipTests dependency:resolve-plugins dependency:go-offline

- save_cache:
paths:
- ~/.m2
key: greenmail-{{ checksum "pom.xml" }}

- run:
command: ./mvnw -V clean install
command: ./mvnw --batch-mode -V --fail-at-end --errors install
no_output_timeout: 15m

- run:
Expand Down

0 comments on commit 3a364e9

Please sign in to comment.