Running ""mvn clean compile war:exploded glassfish:deploy gwt:gwt" is probably related to the issue.
You are running the "clean" and "compile" phases, and then a bunch of goals directly, the GWT-Maven Compile Mojo is bound to the "process- classes" phase now, and it previously was "compile." http://code.google.com/p/gwt-maven/source/browse/trunk/maven-googlewebtoolkit2-plugin/src/main/java/com/totsp/mavenplugin/gwt/CompileMojo.java That probably explains the difference right there. But, that said, the Compile Mojo is intended to be invoked automatically when you run "mvn install" to compile your Java source to JavaScript for web/deploy mode. When you are running the shell you don't need, or want, your GWT code compiled anyway - so the problem here is confusing. I assume you are trying to run some noserver setup with that command invocation there. If you really do want the GWTCompiler to be invoked by GWT-Maven swap compile with process-classes, that might work (but again, you usually don't want the GWTCompiler involved for the shell). Also, you might try the -X switch, that will show you exactly what is going on (all the phases and plugins involved, etc). On Nov 4, 8:57 am, walshms <[EMAIL PROTECTED]> wrote: > The execution goal is definitely in there. It's been working fine with > beta-20 for the past 3 months. If I simply change the version to > beta-22, problems start. Needless to say, this also happens for all > version after 22. Anyways, I think I'll just rewrite starting with the > latest version. Thanks for your help guys! > > On Nov 3, 11:59 am, "Mirko Nasato" <[EMAIL PROTECTED]> wrote: > > > Note that the latest version is 2.0-beta24, not beta22. > > > SVN will show all code changes, although there will be lots and lots > > of them since beta20 > > > http://code.google.com/p/gwt-maven/source/list > > > But if "nothing is being compiled" means that gwt:compile is not even > > being executed, maybe you're missing an <execution> with > > <goal>compile</goal> in your pom.xml? > > > http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plug... > > > Cheers > > > Mirko > > > 2008/11/3 walshms <[EMAIL PROTECTED]>: > > > > I'm running "mvn clean compile war:exploded glassfish:deploy gwt:gwt" > > > > When I have the plugin version set to 2.0-beta20, everything is > > > compiled an deployed correctly. All I have to do is change the version > > > to 2.0-beta22 and nothing gets compiled anymore. > > > > Is there a change log of what was changed between versions I can look > > > at? > > > > On Nov 1, 7:45 pm, Charlie Collins <[EMAIL PROTECTED]> wrote: > > >> Tough to tell from that what's up - the config looks normal. What do > > >> you have for your executions though, and what command are you trying > > >> to run to get it to compile? > > > >> The docs are here > > >> BTW:http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plug... > > >> (much updated now over .20 - you may already have seen them, just > > >> putting it out there in case). > > > >> On Oct 31, 3:11 pm, walshms <[EMAIL PROTECTED]> wrote: > > > >> > I'm trying to migrate an app from beta-20 and I'm getting odd behavior > > >> > in that nothing is being compiled anymore. > > > >> > This is my configuration: > > > >> > <groupId>com.totsp.gwt</groupId> > > >> > > > >> > <artifactId>maven-googlewebtoolkit2-plugin</artifactId> > > >> > <version>2.0-beta22</version> > > >> > <configuration> > > >> > <logLevel>INFO</logLevel> > > >> > > > >> > <runTarget>${project.build.finalName}/operations/</runTarget> > > >> > <compileTargets> > > >> > > > >> > <param>operations</param> > > >> > </compileTargets> > > >> > <generatorRootClasses> > > >> > > > >> > <value>operations</value> > > >> > </generatorRootClasses> > > >> > <extraJvmArgs>-Xmx256M > > >> > -Xms64M</extraJvmArgs> > > >> > <style>DETAILED</style> > > >> > <noServer>true</noServer> > > >> > <port>8080</port> > > >> > </configuration> > > > >> > Anything else I should be looking at? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "gwt-maven" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/gwt-maven?hl=en -~----------~----~----~----~------~----~------~--~---
