0

maven mojo プラグイン のcommandlineArgsに二重引用符を追加することは可能ですか?
バッチで私は %1 を持っています - 最初の空白まで文字列の最初の部分だけを取得します


quot: " を試してみ ましが、役に立ちませんでした 。
<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 に答える