maven mojo プラグイン
のcommandlineArgsに二重引用符を追加することは可能ですか?
バッチで私は %1 を持っています - 最初の空白まで文字列の最初の部分だけを取得します
quot: " を試してみ ましたが、役に立ちませんでした
。<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>