gwt - In PlayN, how can I build the HTML version of my project from the command line? -


currently i'm building in eclipse using gwt plugin. i'd automate deployment development webserver using script gwt compilation command line.

i've followed directions in running via maven section of getting started page:

mvn -phtml integration-test 

but tries build versions, erring out on android build (which i'd prefer skip @ moment) , throws warning stating html profile doesn't exist:

[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] requested profile "html" not activated because not exist. 

how can build html version?

mvn clean package -pl core,html

this compile core , html packages. if want html, still need core package.

the output default in target folder.


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -