0

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


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


我试过 <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>
4

1 回答 1

1

使用 XML CDATA:

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

或者:

<arguments><argument><![CDATA[###LONG PATH WITH SPACE###]]></argument></arguments>
于 2012-07-18T15:54:40.133 回答