Files
spring-ws/circle.yml
2017-10-13 16:21:05 -05:00

26 lines
568 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8u141
steps:
- checkout
- run:
name: Test current version
command: ./mvnw -Pdistribute,snapshot,docs clean test
- run:
name: Test Spring.NEXT
command: ./mvnw -Pspringnext clean test
- run:
name: Deploy to Artifactory
command: ./deploy.bash
general:
branches:
ignore:
- gh-pages # list of branches to ignore
dependencies:
cache_directories:
- "~/.m2"