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 e28b835 commit fbc3fc4Copy full SHA for fbc3fc4
.circleci/config.yml
@@ -0,0 +1,18 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: ~/circleci-java
5
+ docker:
6
+ - image: circleci/openjdk:8-jdk-stretch
7
+
8
+ steps:
9
+ - checkout
10
+ - restore_cache: # restore the saved cache after the first run or if `pom.xml` has changed
11
+ key: circleci-demo-java-spring-{{ checksum "pom.xml" }}
12
+ - run: mvn dependency:go-offline # gets the project dependencies
13
+ - save_cache:
14
+ paths:
15
+ - ~/.m2
16
17
18
+ - run: mvn package
.travis.yml
0 commit comments