diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..c3dd64ea --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2.1 + +orbs: + maven: circleci/maven@0.0.12 + +workflows: + maven_test: + jobs: + - maven/test # checkout, build, test, and upload test results + + +test: + override: + - mvn package + + post: + - mv target/*.war $CIRCLE_ARTIFACTS/ \ No newline at end of file