0

目前我正在使用 GWT 插件在 Eclipse 中构建它。我想使用从命令行执行 GWT 编译的脚本自动部署到我的开发网络服务器。

我已按照“入门”页面的“通过 Maven 运行”部分中的说明进行操作:

mvn -Phtml integration-test

但它会尝试构建所有版本,在 Android 构建(我现在更愿意跳过)上出错,并抛出一个警告,指出 html 配置文件不存在:

[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] MyPlaynGame Metaproject .......................... SUCCESS [0.375s]
[INFO] MyPlaynGame Core ................................. SUCCESS [1.638s]
[INFO] MyPlaynGame Java ................................. SUCCESS [0.319s]
[INFO] MyPlaynGame HTML ................................. SUCCESS [4.019s]
[INFO] MyPlaynGame Android .............................. FAILURE [0.308s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.903s
[INFO] Finished at: Mon Jun 04 22:17:33 PDT 2012
[INFO] Final Memory: 15M/255M
[INFO] ------------------------------------------------------------------------
[WARNING] The requested profile "html" could not be activated because it does not exist.

我怎样才能得到它只是为了构建 html 版本?

4

1 回答 1

1

mvn clean package -pl core,html

这只会编译 core 和 html 包。如果你只想要html,你仍然需要核心包。

默认情况下,输出将在目标文件夹中。

于 2012-06-05T15:06:50.853 回答