Dodana golang, maven

This commit is contained in:
Polz 2023-09-07 22:29:02 +02:00
parent bea8094d7c
commit 42940142b7
4 changed files with 23 additions and 1 deletions

View file

@ -1,4 +1,5 @@
# Porazdeljeni sistemi
# Davor.Sluga@fri.uni-lj.si
# Windows, VS Code
# Windows, VS Code, golang
- include_tasks: vscode.yml
- include_tasks: golang.yml

View file

@ -0,0 +1,12 @@
- name: Install PyCharm
block:
- name: Create destination for JetBrains PyCharm
file:
path: /opt/PyCharm
state: directory
- name: Download and unpack JetBrains PyCharm
unarchive:
src: https://download.jetbrains.com/python/pycharm-community-2023.2.1.tar.gz
dest: /opt/PyCharm
creates: /opt/PyCharm/pycharm-community-2023.2.1/build.txt
remote_src: yes

View file

@ -0,0 +1,5 @@
- name: Install the GO programming language
apt:
name: golang
state: latest

View file

@ -0,0 +1,4 @@
- name: Install maven
apt:
name: maven
state: latest