Questions tagged [gwt-maven-plugin]

Facilitates GWT web application development using Maven as build tool.

Facilitates GWT web application development using Maven as build tool to provide:

  • GWT compiler execution for packaging your application into a WAR Compile and Debug
  • generate GWT internationalization ("i18n") interfaces from bundles Internationalization
  • running tests (or test suites) based on GWTTestCase framework as part of Maven build, Testing Support
  • run (or debug) in DevMode from Maven DevMode
  • generate boiler code for GWT-RPC Async interface from synchronous server-side interfaces Generate Async interfaces for GWT-RPC
  • integrate nicelly into Eclipse, thanks to M2Eclipse and the Google Plugin for Eclipse.

More Info

101 questions
20
votes
5 answers

Why does not archetype:generate with parameters work for me?

If i run mvn archetype:generate it works but if i try mvn archetype:generate -DarchetypeGroupId org.codehaus.mojo -DarchetypeArtifactId gwt-maven-plugin -DarchetypeVersion=2.5.0 The message is from my last attempt with backslashes but it''s…
osh
  • 1,191
  • 4
  • 13
  • 21
9
votes
2 answers

GWT 2.7 + GAE app looks for codeserver when deployed

Why does appengine try to use Super Dev Mode? Every time I deploy my GWT app to appengine and try to access it I get the white loading screen, then after about 20-30 seconds I get this message: I use maven with the gwt-maven-plugin and…
7
votes
2 answers

GWT Does Not Load *.nocache.js

I have this Maven project built with the gwt-maven-archetype. While it runs perfectly with the mvn gwt:run goal, however when i try to run it in the tomcat7 container either mvn tomcat:run or mvn gwt:compile && mvn tomcat:run it does not load the…
Spyros Mandekis
  • 984
  • 1
  • 14
  • 32
6
votes
1 answer

What is the difference between net.ltgt.gwt.maven and org.codehaus.mojo GWT Maven plugins?

Apparently, there are two maven plugins for GWT: This one: net.ltgt.gwt.maven gwt-maven-plugin 1.0-rc-6 and this one:…
zakaria amine
  • 3,412
  • 2
  • 20
  • 35
6
votes
1 answer

Where to get gwt-maven-plugin 2.8.0-SNAPSHOT

The gwt-maven-plugin documentation lists 2.8.0-SNAPSHOT as current version, and I'd like to evaluate the upcoming 2.8.0 GWT. While version 2.7.0 is available directly from the Maven Central repository, I am unable to find the correct repository from…
Martin C.
  • 12,140
  • 7
  • 40
  • 52
6
votes
2 answers

GWT maven compiler output directory

I need to set output directory location for GWT compiler using maven plugin. I've investigated the GWT compiler and gwt-maven-plugin docs and did not find any options for this. For example: I have two modules named editor and console and…
alex.b
  • 1,448
  • 19
  • 23
6
votes
3 answers

How would I give the GWT-compiler more memory when using GWT-Maven?

We have a Maven build that runs the GWT plugin (gwt-maven). Unfortently it is running out of memory. Do I need to give Maven itself more heap or do I need to give GWT more heap? Any idea how to specify this for a pom.xml file?
benstpierre
  • 32,833
  • 51
  • 177
  • 288
5
votes
2 answers

How enable production mode in GWT 2.7 application

I would like to deploy my GWT 2.7 application on my server through gwt-maven-plugin and jenkins. But, after compile process, when I launch my application, I've this error message : Couldn't load APPLICATION_NAME from Super Dev Mode server at…
Maxime Riss
  • 111
  • 1
  • 7
5
votes
2 answers

GWT compilation is skipped in maven when module packaging is pom

I am trying to reuse a assembled gwt compilation in another war. For this i am try to change the current maven module's packaging from war to pom. I then plan to use maven-assembly-plugin to zip up gwt's module js output and use that later on in…
appbootup
  • 9,537
  • 3
  • 33
  • 65
5
votes
2 answers

Error installing Maven Integration for Eclipse WTP

I am trying to install the gwt-maven-plugin for Eclipse Indigo 3.7.2 (running on Ubuntu), following the instructions here: http://uptick.com.au/content/getting-started-gwt-maven-and-eclipse However, when I get to the step to install "Maven…
del
  • 6,341
  • 10
  • 42
  • 45
4
votes
1 answer

GWT Maven Plugin -- gwt:run works but gwt:compile doesn't. Why?

I'm using gwt-maven-plugin to manage a GWT project. I use the gwt:run goal all the time to run locally in "dev mode" for testing. I now want to compile my project into a war for deployment on Tomcat. When I run gwt:compile, however, I get compile…
Travis Webb
  • 14,688
  • 7
  • 55
  • 109
4
votes
3 answers

GWT. Maven. GWT Module not found in project sources or resources

I have a maven multi-module project. One of this modules (compiled as .jar) contains only domain objects, which will be used at client and server sides (I add this .jar as dependency to other my modules). I know that GWT module, where will be used…
WelcomeTo
  • 19,843
  • 53
  • 170
  • 286
4
votes
2 answers

compiler errors when starting gwt:compile with gwt-maven-plugin

I'm trying to migrating a gwt-project to maven for a couple of days, but keep running into problems. I tried to follow different guides and tried different pom-configurations but didn't get it to work. At the moment, it's like this: When I run…
Markus
  • 1,598
  • 2
  • 13
  • 32
4
votes
2 answers

How can I use SuperDevMode with Maven

after reading a lot about SuperDevMode of gwt 2.5 I wanted to try it myself. I read https://vaadin.com/blog/-/blogs/vaadin-and-superdevmode and some other articles. As I understand I have to run the codeserver class. I checked out the…
Arne
  • 1,364
  • 1
  • 11
  • 22
3
votes
2 answers

Compilation GWT with jdk17

I'm trying to migrate gwt application from java 1.8 to 17 (java source remains in 1.8). I'm using gwt-maven-plugin version 2.9.0. Compilation with open JDK 17 based on logs looks ok, there are no errors, comparing to compilation with JDK1.8 debug…
1
2 3 4 5 6 7