我是 Maven 插件的新手,我需要让这个插件运行 sencha cmd 工具来缩小我们的 JavaScript 应用程序作为日常构建过程的一部分。
目前可执行标签有一个硬编码路径,但我想知道是否可以将路径指定为环境变量,然后在下面的代码中访问该环境变量,以便它可以在任何机器上运行?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>sencha-compile</id>
<phase>compile</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>C:\Sencha\Sencha\Cmd\4.0.2.67\sencha.exe</executable>
<arguments>
<argument>app</argument>
<argument>build</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>