是否可以在maven mojo插件的命令行args中添加双引号?
在批处理中,我有%1-只获取字符串的第一部分,直到第一个空白
我尝试了":"但无济于事
例如<commandlineArgs>"path"</commandlineArgs>
我试过"<commandlineArgs>"path"</commandlineArgs>
但我得到了:
无法执行目标org.codehaus.mojo:exec-maven插件: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>
使用XML CDATA:
<commandlineArgs><![CDATA[###LONG PATH WITH SPACE###]]></commandlineArgs>
或:
<arguments><argument><![CDATA[###LONG PATH WITH SPACE###]]></argument></arguments>