Move Spring Web Services to 3.0.0.BUILD-SNAPSHOT Key updates include: * Rebase against Java 8 * Spring 5 * Smack 4.2 * Removal of wss4j 1.x support * Gradle 4.0 * Plugins
18 lines
346 B
YAML
18 lines
346 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/openjdk:8u141
|
|
steps:
|
|
- checkout
|
|
- run: ./gradlew clean build
|
|
- run: ./gradlew -Pprofile=springnext clean build
|
|
general:
|
|
branches:
|
|
ignore:
|
|
- gh-pages # list of branches to ignore
|
|
|
|
dependencies:
|
|
cache_directories:
|
|
- "~/.m2"
|