是否可以在 maven mojo 插件
的commandlineArgs中添加双引号?
在批处理中,我有 %1 - 只获取字符串的第一部分,直到第一个空格
我试过引用: “但它没有帮助,
例如<commandlineArgs>"path"</commandlineArgs>
我试过 了
<commandlineArgs>"path"</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>