This is the first time I am working with YAML files, so the first think I looked at was to find any library that could help me to parse the file.
I have found two li
I ended up using SnakeYaml and made some split strings to solve my issue.
Loaded the yaml file to Object and then into a Map, then split the result from the Map into String[] and then in a for loop I read out the name from the String[]. I did the same with groups.
I know that there is better solutions out there but this is good enough for this project.
Thanks all for the replies.