On Thu, Apr 12, 2012 at 4:02 PM, Celinio <[email protected]> wrote:
> Hi,
> does anyone know how to start an application in hosted mode (development)
> with another server than the embbeded one which is Jetty ?
> With the gwt-maven-plugin plugin, there are several
> options/parameters/mojos to launch the goal gwt:run (-Dnoserver, -Dport ...)
> and there are probably some resources to copy to the server folders.
> The targeted server is Jonas by the way.
That configuration works eg:
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt-maven-plugin.version}</version>
<configuration>
<!-- Our local messages are stored there: -->
<i18nMessagesBundle>com.bricktop.app.client.common.resources.i18n.LocalMessages</i18nMessagesBundle>
<!-- And the generated sources should be generated
in our src dir -->
<generateDirectory>${basedir}/target/generated-sources/gwt</generateDirectory>
<logLevel>INFO</logLevel>
<style>OBF</style>
<gwtVersion>${gwt.version}</gwtVersion>
<runTarget>http://localhost:9000/</runTarget>
<webappDirectory>${custom_project_root}/backend/public/gwt</webappDirectory>
<copyWebapp>false</copyWebapp>
<noServer>true</noServer>
</configuration>
Cheers,
Raphael
--
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.