Related Question: Maven Exec Plugin not reading configuration
In my configuration I need an argument which is a file path. I found a rather "dirty" workaround by surrounding the argument with quotes in the POM ("dirty" because the argument will be passed to the main method with these quotes, they have to be removed again in the code).
<configuration>
<executable>java</executable>
<arguments>
<argument>"path to file"</argument>
</arguments>
</configuration>
However I have found no solution for passing the path as a command line argument:
>mvn exec:java -Dexec.args="path to file"