1

我通过添加以下内容更新了原始问题,从而解决了该问题:

<workingDirectory>src/main/extApps/usx</workingDirectory>

我在 Maven 中执行 Sencha Cmd,但是 pom 文件不在应用程序目录中,该工具需要执行。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2</version>
    <configuration>
        <mainClass>com.atlantis.amc.AmcWebApp</mainClass>
    </configuration>
    <executions>
        <execution>
            <id>sencha-compile</id>
            <phase>compile</phase>
            <goals>
                <goal>exec</goal>
            </goals>
            <configuration>
                <executable>sencha</executable>
                <workingDirectory>src/main/extApps/usx</workingDirectory>
                <arguments>
                    <argument>app</argument>
                    <argument>build</argument>
                </arguments>
            </configuration>
        </execution>
    </executions>
</plugin>
4

1 回答 1

0

或者另一种方式:

<arguments>
    <argument>-sdk</argument>
    <argument>${basedir}/src/main/extApps/usx</argument>
    <argument>app</argument>
    <argument>build</argument>
    <argument>--clean</argument>
    <argument>--environment</argument>
    <argument>production</argument>
    <argument>--destination</argument>
    <argument>${basedir}/src/main/extApps/usx/build</argument>
</arguments>

参数说明:

$ sencha help app build
于 2014-04-16T12:36:55.050 回答