juraclient/.drone.yml
Stefan Kalscheuer 8017f2671d add Serializable type to unserialized JSON lists
We don't know about the exact data type from the JSON mapper,
so we make it explicitly unknown, but at least Serializable here.
2020-08-12 11:48:55 +02:00

21 lines
259 B
YAML

kind: pipeline
type: docker
name: java11
steps:
- name: test
image: maven:3-jdk-11
commands:
- mvn clean test
---
kind: pipeline
type: docker
name: java14
steps:
- name: test
image: maven:3-jdk-14
commands:
- mvn clean test