I am running a Java project based on a maven/pom.xml project. I recently made changes to the code, and am finding that if I run the project using IntelliJ's 'Run' command, the code works as expected, but if I run it using a ./mvnw command I'm seeing different behavior.
The main thing I want to know is exactly what commands are being executed by IntelliJ's run command, so that I can hope to understand exactly what is different. If there is a way to flip a flag in IntelliJ so that it will list exactly the command(s) it is executing, all the better.


