Hi i had the same problem,
i was mixing my generated files from the google eclipse plugin and
the maven gwt plugin.
To fix this problem i add a directory to delete in maven clean plugin
<properties>
<gwtOutputDirectory>war/OUTPUT_DIRECTORY</gwtOutputDirectory>
</properties>
The OUTPUT_DIRECTORY is defined in your src/main/java/<your_package>/
Module.gwt.xml
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4</version>
<configuration>
<filesets><fileset>
<directory>${gwtOutputDirectory}</directory>
</fileset></filesets>
</configuration>
</plugin>
</plugins>
</build>
i used this POM
http://mojo.codehaus.org/gwt-maven-plugin/eclipse/google_plugin.html
On 2 fév, 11:50, Kees <[email protected]> wrote:
> Could you share your maven-war-plugin configuration? I can't seem to
> solve this same issue...
>
> On 28 jan, 09:42, cupakob <[email protected]> wrote:
>
> > To solve the problem, we have to cange the config for themaven-war-
> > plugin and now works fine.
>
> > On 18 Jan., 10:52, olivier nouguier <[email protected]>
> > wrote:
>
> > > How to you run your server ? WTP Launch ?
>
> > > On Mon, Jan 18, 2010 at 10:45 AM, Alexander <[email protected]> wrote:
> > > > I meant there is no need to use them in production (e.g. in real server)
>
> > > > 2010/1/18 cupakob <[email protected]>
>
> > > >> i think, the parameter is needed for both - Host and Dev Mode.....
>
> > > >> On 15 Jan., 17:03, Alexander <[email protected]> wrote:
> > > >> > This parameter is only need when you run DevMode, right?
>
> > > >> > 2010/1/15 cupakob <[email protected]>
>
> > > >> > > hi all,
>
> > > >> > > i have a project, which useGWTfor the frontend. I can compile and
> > > >> > > run the module withmaven(mvn compile war:explodedgwt:run) and it
> > > >> > > works fine. After that i package (mvn war:exploded package) the
> > > >> > > app as
> > > >> > > war and deploy it intojboss. When i call
>
> > > >> > > http://localhost:8080/module-frontend/index.html
>
> > > >> > > i get follwoing message
>
> > > >> > > GWTmodule 'XYZ' may need to be (re)compiled
>
> > > >> > > I found, that the ?gwt.codesvr parameter is missing. I've tried
> > > >> > > again
> > > >> > > with:
>
> > > >> > >http://localhost:8080/module-frontend/index.html?gwt.codesvr=172.16.0.
> > > >> ..
>
> > > >> > > but now i get this error message:
>
> > > >> > > Plugin failed to connect to hosted mode server at
> > > >> > > 172.16.0.43:9997
>
> > > >> > > Any suggestions, how to solve the problem?
>
> > > >> > > --
> > > >> > > You received this message because you are subscribed to the Google
> > > >> Groups
> > > >> > > "Google Web Toolkit" group.
> > > >> > > To post to this group, send email to
> > > >> [email protected].
> > > >> > > To unsubscribe from this group, send email to
> > > >> > > [email protected]<google-web-toolkit%[email protected]>
> > > >> <google-web-toolkit%[email protected]<google-web-toolkit%[email protected]>
>
> > > >> > > .
> > > >> > > For more options, visit this group at
> > > >> > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > > >> > --
> > > >> > Regards,
> > > >> > Alexander
>
> > > >> --
> > > >> You received this message because you are subscribed to the Google
> > > >> Groups
> > > >> "Google Web Toolkit" group.
> > > >> To post to this group, send email to
> > > >> [email protected].
> > > >> To unsubscribe from this group, send email to
> > > >> [email protected]<google-web-toolkit%[email protected]>
> > > >> .
>
> > > >> For more options, visit this group at
> > > >>http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > > > --
> > > > Regards,
> > > > Alexander
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > > > Groups
> > > > "Google Web Toolkit" group.
> > > > To post to this group, send email to
> > > > [email protected].
> > > > To unsubscribe from this group, send email to
> > > > [email protected]<google-web-toolkit%[email protected]>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > > --
> > > A coward is incapable of exhibiting love; it is the prerogative of the
> > > brave.
> > > --
> > > Mohandas Gandhi
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" 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/google-web-toolkit?hl=en.