使用maven commandlineArgs插件中的commandlineArgs传递带有空格的字符串

时间:2012-07-18 15:12:01

标签: maven batch-file mojo

是否可以在maven mojo插件的 commandlineArgs 中添加双引号?
在批处理上我有%1 - 只获得字符串的第一部分直到第一个空格


我尝试过:,但它没有帮助 例如
<commandlineArgs>"path"</commandlineArgs>


我尝试了&amp; quot; <commandlineArgs>&quot;path&quot;</commandlineArgs>
但我得到了:

无法执行目标org.codehaus.mojo:exec-maven-plugin:1.2:exec

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.2</version>
            <executions>
                <execution>
                    <id>export_objects</id>
                    <phase>package</phase>
                    <goals>
                        <goal>exec</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <executable>export_obj.bat</executable>
                <commandlineArgs>###LONG PATH WITH SPACE###</commandlineArgs>   
            </configuration>
        </plugin>

1 个答案:

答案 0 :(得分:1)

使用XML CDATA:

<commandlineArgs><![CDATA[###LONG PATH WITH SPACE###]]></commandlineArgs>

或:

<arguments><argument><![CDATA[###LONG PATH WITH SPACE###]]></argument></arguments>