Picocli - "Missing required Parameters" even when passed parameters
Solution 1:
Resolved; I didn't pass the arguments from the command-line in my main-mathod ...
Pretty stupid lol.
Before, not working
public static void main(String[] args) {
var cmd = new CommandLine(new Scraper());
cmd.execute();
}
After, working
public static void main(String[] args) {
var cmd = new CommandLine(new Scraper());
cmd.execute(args);
}