I know that there are a lot of questions related to this, but I messed up everything.
I am running my main class and receiving the following error:
Caused by: java.lang.NoClassDefFoundError: org/apache/commons/cli/ParseException
In my project I have several pom.xml files and I checked that all of them contains:
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
How can I fix this issue?