juraclient/.drone.yml
Stefan Kalscheuer b99d3099ee
All checks were successful
continuous-integration/drone/push Build is passing
build and test with JDK 21
2023-10-15 17:23:12 +02:00

32 lines
436 B
YAML

kind: pipeline
type: docker
name: java11
steps:
- name: test
image: maven:3-eclipse-temurin-11
commands:
- mvn -B clean test
---
kind: pipeline
type: docker
name: java17
steps:
- name: test
image: maven:3-eclipse-temurin-17
commands:
- mvn -B clean test
---
kind: pipeline
type: docker
name: java21
steps:
- name: test
image: maven:3-eclipse-temurin-21
commands:
- mvn -B clean test