How do I run a maven/eclipse/GWT/playN app in production mode?

99封情书 提交于 2019-12-06 13:55:45

I suggest that you try to compile/run it with maven directly, not through Eclipse, first go to the root directory of your game and do the following:

mvn clean package

that should compile your game without problems, and then

mvn test -Ptest-html

and that should run your game in http://localhost:8080/

Hope this helps, and I strongly suggest that use maven directly whenever you can, because Eclipse has a lot of incompatibility problems with some things.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!