tomcat - How to compile and package maven gwt project in IntelliJ Idea -
i'm beginning maven , have created gwt
simple example stockwatcher
. compile , package project war
use 3 operations:
- lifecycle 'compile'
- then go command line , run 'mvn gwt:compile'
- lifecycle 'package'
after copy war
file apache tomcat
. plese me automate these steps. thanks!
if have gwt:compile
wired in maven, mvn package
(possibly invoked ide through lifecycle 'package') should enough produce war you're after: in linear lifecycle maven uses, package
phase implies compile
, prepare-package
phases (the latter gwt:compile
goal bound default).
Comments
Post a Comment