Is there any good #CLI library or framwork (the thing that parses the user input from `String[] args` for you) to recommend for #Java and/or #Kotlin ?
In the past year or so I'm sticking with Kotlin and clikt. It's not the best, but definitely not the worst. Now I'm going to work with a new cli program so I'd like to hear some new options.
@skyblond I've been using picocli for several years now and I think it's really good.
@ivt I got the same conclusion. It's even graalvm ready. Amazing!
Context: For now I'm checking apache commons cli and picocli. Looks like the option is very limited.