GWT / Maven (again!)

2011-07-29 Thread cri
For quite a while, we've been somewhat successful using gwt-maven- plugin in conjunction with GWT/GPE. However, there has been lots of effort and frustration getting to where we are. And, I've just encountered another problem that I've yet to figure out. It seems to me that a lot of the trouble

Re: GWT / Maven (again!)

2011-07-29 Thread Juan Pablo Gardella
This sample https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home is a gwt project with maven standard layout 2011/7/29 cri chuck.irvine...@gmail.com For quite a while, we've been somewhat successful using gwt-maven- plugin in conjunction with GWT/GPE. However, there has been lots of

Re: GWT / Maven (again!)

2011-07-29 Thread cri
What I meant is to somehow create a mavenized project having the standard GWT directory structure (so that it plays better with GPE). On Jul 29, 9:30 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: This sample https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home is a gwt

Re: Maven, again

2010-04-29 Thread James Northrup
*i think* i do something mildly different than plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId configuration hostedWebapp${project.build.directory}/$

Re: Maven, again

2010-04-27 Thread Brian Reilly
I struggled with this myself. I finally just found a simple solution here: http://code.google.com/eclipse/docs/faq.html#gwt_with_maven Basically, GPE 1.3 now allows you to specify an alternate location for your WAR directory, where static resources and web.xml will be found (as well as a

Re: Maven, again

2010-04-26 Thread Ramon Buckland
Hi Steve, I think I have what you are after. What does this pom.xml do ? a. mvn package - Creates the war, compiles the java source code. b. mvn jetty:run - compiles the GWT to JS into the target/war directory and launches jetty (with a debug profile, you can start eclipse debugger onto it) c.

Re: Maven, again

2010-04-26 Thread Joseph Ottinger
You can't use the target directories for the JS? On Sat, Apr 24, 2010 at 10:50 AM, Ramon Buckland ra...@thebuckland.comwrote: Hi Steve, I think I have what you are after. What does this pom.xml do ? a. mvn package - Creates the war, compiles the java source code. b. mvn jetty:run -

Re: Maven, again

2010-04-19 Thread Jan Ehrhardt
I'm currently working on a sample app for my GWT logging framework and it uses Maven. http://github.com/derjan1982/slf4gwt/tree/master/samples/ It might be an example setup for you, allthough it's not finished yet. I'm using m2eclipse for development and everything works, except I've to enable

Re: Maven, again

2010-04-19 Thread mkkm...@gmail.com
I'm using gwt-maven-plugin and I works very well. To add the Google project nature to the project you need to configure your maven-eclipse-plugin like this: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-eclipse-plugin/artifactId

Maven, again

2010-04-18 Thread Steve
I'm getting very frustrated -- reading dozens of messages, faqs, whatever I can find on the subject, but I haven't found all the info I need in one place and haven't been able to piece it all together ... maybe I just missed it, but hopefully someone here can help. What I'd like to do ... Create

Re: Maven, again

2010-04-18 Thread Chris
I've been wanting to do something similar... Here's what I've done: Declare some properties: properties !-- this is because the maven gwt plugin apparently has a hard-coded path to /war --

Re: Maven, again

2010-04-18 Thread Chris
That's what I've used: properties !-- this is because the maven gwt plugin apparently has a hard-coded path to /war -- war.directory${basedir}/war/war.directory

Re: Maven, again

2010-04-18 Thread Subhrajyoti Moitra
try this http://mojo.codehaus.org/gwt-maven-plugin/ On Sun, Apr 18, 2010 at 11:25 PM, Steve steveahlst...@gmail.com wrote: I'm getting very frustrated -- reading dozens of messages, faqs, whatever I can find on the subject, but I haven't found all the info I need in one place and haven't