ansible-roles/java/tasks/main.yml
Jérémy Lecour 5b5b8944c5
All checks were successful
continuous-integration/drone/push Build is passing
java: add Java 11 as possible version to install
2020-03-21 19:07:26 +01:00

11 lines
233 B
YAML

---
# - fail:
# msg: "This role support only java 8 for now !"
# when: java_version != 8
- include: openjdk.yml
when: "{{ java_alternative == 'openjdk' }}"
- include: oracle.yml
when: "{{ java_alternative == 'oracle' }}"