我们正在进行更改以使用Sencha Cmd,但它使用Ant。我们将Maven用于其他事情,因此我们可以对配置文件或其他内容进行更改,因此Sencha Cmd使用Maven而不是Ant,或者我们必须安装Ant才能使用Sencha Cmd。
提前致谢。
答案 0 :(得分:7)
您可以使用Sencha CMD使用Maven构建您的Sencha ExtJS项目。这很容易。 检查我的示例项目Sencha ExtJS 5 + Sencha Cmd 5 + Maven:
https://github.com/dobromyslov/sencha-extjs-maven
目前Sencha ExtJS 5.0 BETA available。 阅读Sencha CMD docs并尝试使用它。
然后将您的项目放在webapp
文件夹中并使用exec-maven-plugin
使用Sencha CMD构建您的ExtJS应用程序,如下所示:
<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>
<!-- Set path to your Sencha Cmd executable-->
<executable>../Sencha/Cmd/5.0.0.116/sencha</executable>
<arguments>
<argument>-sdk</argument>
<argument>${basedir}/src/main/webapp</argument>
<argument>app</argument>
<argument>build</argument>
<argument>--clean</argument>
<argument>--environment</argument>
<argument>${sencha.env}</argument>
<argument>--destination</argument>
<argument>${basedir}/src/main/webapp/build</argument>
</arguments>
</configuration>
</execution>
</executions>
如果要从生成的WAR文件中清除不必要的文件,请使用maven-war-plugin
配置的排除项,如下所示:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<webResources>
<resource>
<directory>src/main/webapp/build/${sencha.env}/MyApp</directory>
<excludes>
<exclude>**/Readme.md</exclude>
</excludes>
</resource>
</webResources>
<packagingExcludes>.sencha/**,app/**,build/**,ext/**,overrides/**,packages/**,sass/**,bootstrap.css,bootstrap.js,bootstrap.json,build.xml,Readme.md</packagingExcludes>
</configuration>
答案 1 :(得分:2)
我们将Maven用于其他事情,因此我们可以对配置文件或其他内容进行更改,因此&gt; Sencha Cmd使用Maven而不是Ant
没有。 Sencha Cmd建立在Ant。
之上我们必须安装Ant才能使用Sencha Cmd
没有。 Sencha Cmd交付时使用的是蚂蚁版本。
如何在maven中使用它?最简单的方法是使用Maven Antrun plugin安装Sencha Cmd。 看看我的评论Simple use of Sencha Cmd and Maven Antrun plugin。 进一步阅读Sencha Cmd and Ant integration。
答案 2 :(得分:1)
Sencha Cmd附带了适用它的Ant版本。您无需单独安装Ant。