18 lines
355 B
YAML
18 lines
355 B
YAML
- name: install java
|
|
become: yes
|
|
community.general.pacman:
|
|
name:
|
|
- jdk17-openjdk
|
|
|
|
- name: install IntelliJ [AUR]
|
|
shell:
|
|
cmd:
|
|
yay -S --needed --noconfirm intellij-idea-ultimate-edition
|
|
|
|
- name: Create symbolic link
|
|
become: yes
|
|
file:
|
|
src: "/usr/bin/intellij-idea-ultimate-edition"
|
|
dest: "/usr/bin/idea"
|
|
state: link
|