I have a maven project with an application launcher made on eclipse. I tried to use the same configuration to run it on Intellij but I wasn't successful.
A lot of dependencies in the project are scoped as provided and intellij will not include them in the classpath.
In eclipse you can always add dependencies in the run configuration. The same thing seems no to be possible in Intellij...
At least, I didn't found a way to include the needed dependencies just in the runtime configuration. Is there a way to do this without actually changing the pom file?
Thanks