2024-05-08 00:22:00 +00:00
|
|
|
- name: "[Arch] install java"
|
2023-10-24 09:48:44 +00:00
|
|
|
become: yes
|
|
|
|
community.general.pacman:
|
|
|
|
name:
|
|
|
|
- jdk17-openjdk
|
|
|
|
|
2024-05-08 00:22:00 +00:00
|
|
|
- name: "[Arch] install IntelliJ"
|
2023-09-22 18:20:14 +00:00
|
|
|
shell:
|
|
|
|
cmd:
|
2023-10-24 09:43:28 +00:00
|
|
|
yay -S --needed --noconfirm intellij-idea-ultimate-edition
|
2023-10-24 09:48:44 +00:00
|
|
|
|
2024-05-08 00:22:00 +00:00
|
|
|
- name: "[Arch] Create symbolic link"
|
2023-10-24 09:48:44 +00:00
|
|
|
become: yes
|
|
|
|
file:
|
|
|
|
src: "/usr/bin/intellij-idea-ultimate-edition"
|
|
|
|
dest: "/usr/bin/idea"
|
|
|
|
state: link
|