We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e19f530 commit b8fd6e9Copy full SHA for b8fd6e9
.circleci/config.yml
@@ -6,12 +6,22 @@ jobs:
6
- image: cimg/openjdk:8.0
7
steps:
8
- checkout
9
+ - restore_cache:
10
+ keys:
11
+ # when lock file changes, use increasingly general patterns to restore cache
12
+ - maven-repo-v1-{{ .Branch }}-{{ checksum "pom.xml" }}
13
+ - maven-repo-v1-{{ .Branch }}-
14
+ - maven-repo-v1-
15
- run:
16
name: Build
17
command: mvn -B -DskipTests clean package
18
19
name: Test
20
command: mvn verify
21
+ - save_cache:
22
+ paths:
23
+ - ~/.m2
24
+ key: maven-repo-v1-{{ .Branch }}-{{ checksum "pom.xml" }}
25
26
workflows:
27
ci:
0 commit comments