I have a project which runs correctly under the terminal command
mvn package exec:java -Dplatform.dependencies -Dexec.mainClass=Demo
Now, I ne
If you are like me, and showed up here trying to run tests that use the -P syntax instead of -D syntax, you can simply follow the instructions from MZF, but use the -D in place of the -P.
For example, my test on the command line executed as:
./gradlew -Penvironment=qa project:test
Using the -P in intellij on the VM line got rejected. Changing the -P to a -D ended up working, however.