juraclient/.drone.yml
Stefan Kalscheuer dc16c3ffd8
All checks were successful
continuous-integration/drone/push Build is passing
add JDK 15 to build roster
2020-10-02 10:44:55 +02:00

21 lines
267 B
YAML

kind: pipeline
type: docker
name: java11
steps:
- name: test
image: maven:3-openjdk-11
commands:
- mvn clean test
---
kind: pipeline
type: docker
name: java15
steps:
- name: test
image: maven:3-openjdk-15
commands:
- mvn clean test