如何为Maven插件指定执行目录?

时间:2014-02-28 17:28:51

标签: maven extjs sencha-cmd

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

<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>

1 个答案:

答案 0 :(得分: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