14 lines
329 B
YAML
14 lines
329 B
YAML
---
|
|
|
|
- name: Java | Install OpenJDK Implementation
|
|
import_tasks: install_openjdk.yml
|
|
when: java_implementation == 'openjdk'
|
|
tags:
|
|
- install
|
|
|
|
- name: Java | Install OracleJDK Implementation using distributed binaries
|
|
import_tasks: install_oraclejdk.yml
|
|
when: java_implementation == 'oraclejdk'
|
|
tags:
|
|
- install
|