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"
link|improve this question

feedback

2 Answers

If you want it in command line try: $ mvn exec:java -Dexec.args="path\ to\ file arg2 arg3"

link|improve this answer
feedback

On the command line, you may try using single-quotes (but I'm not sure if it works), e.g.:

>mvn exec:java -Dexec.args="'path to file' arg2 arg3"
link|improve this answer
I tried without success on Windows. (On Linux, no spaces are allowed in file / path names :-) – mjn Jan 18 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.