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
1
vote
1 answer

Javascript file is missing after compilation with gwt-maven-plugin

Hi I try to create a basic GWT application compiled by gwt-maven-plugin. When I open compiled application, I get error on browser console: gwt_me.nocache.js:10 GET…
Matt
  • 8,195
  • 31
  • 115
  • 225
1
vote
1 answer

gwt-maven-plugin run tests on wrong address

When maven starts tests using gwt-maven-plugin, it firing up server, and use wrong ip, in my case Starting http://10.0.14.67:60281/com.something.GwtTest.JUnit/junit-standards.html?gwt.codesvr=10.0.14.67:60278 on browser FF17 and get access denied…
Wizzard
  • 345
  • 3
  • 13
1
vote
1 answer

Maven M2Eclipse plugin not working

Hi I have a strange problem I can not solve on my own. I am trying to use Maven in Newest Spring Tool Suite. I got it working without any problems on my laptop but it doesn't work on my pc (windows 7). On both I have the same version of STS, Maven…
TergOfSky
  • 107
  • 13
1
vote
1 answer

How to compile a GWT module contained in the test source with gwt-maven-plugin?

I am trying to run GWT compile with maven through the plugin: gwt-maven-plugin, but the GWT module is contained in the test source path, namely: src/test/java. And the plugin complaints that it can't find the GWT module. However, the module works…
edbras
  • 4,145
  • 9
  • 41
  • 78
1
vote
0 answers

project xxx: GWT Module yyy not found in project sources or resources

I am seeing some random failure in our multi-module gwt app. Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.6.1:compile (compile) on project xxx: GWT Module yyy not found in project sources or resources. -> [Help 1] 2015-08-18…
ankurvsoni
  • 2,064
  • 3
  • 18
  • 22
1
vote
0 answers

Does java maven spring really work with google app engine

I created a project testprojectapp using maven mvn archetype:generate -Dappengine-version=1.9.18 -Dapplication-id=testprojectapp -Dfilter=com.google.appengine.archetypes: my pom.xml is below
1
vote
1 answer

GWT compile causes SIGSEGV

Does anyone know what could be causing GWT compilation failure between gwt-maven-plugin start and "Compiling module" statement? We run GWT with info normally so all I see in my log is plugin start followed by SIGSEGV soon after. When I run with…
Peter Kahn
  • 12,364
  • 20
  • 77
  • 135
1
vote
1 answer

Using gwt:run-codeserver

I have just started to use the gwt maven plugin in my project and everything seems to be working fine. However, debugging is quite hard as I am unable to make superdevmode work correctly and I cannot get the errors to display on my IDE…
lanzalibre
  • 321
  • 2
  • 7
1
vote
1 answer

GWT Maven plugin replace web.xml

I have the following maven configuration my goal is to replace web-xml for development mode from usual web.xml to web-dev.xml gwt-maven-plugin seems to have configuration wor it (webXml) but it's not working not as eclipse plugin (run as web…
Mikhail Boyarsky
  • 2,908
  • 3
  • 22
  • 37
1
vote
1 answer

Can not reflect changes using gwt-maven-plugin superdev

Follow steps in this post, I use gwt-maven-plugin 2.6.0, when I run mvn gwt:run-codeserver it compiled successfully: [INFO] binding: user.agent=safari [INFO] Compiling module com.example.myModule [INFO] Validating units: [INFO] Ignored 3…
July
  • 855
  • 4
  • 11
  • 22
1
vote
1 answer

GWT Multi Module Project with Maven

I have a multi-module GWT project with the following approach, but I am having trouble running it in dev mode. Here is the structure of the POM files. Parent POM com.mycmp com.mycmp.xt
Kathir
  • 6,136
  • 8
  • 36
  • 67
1
vote
2 answers

Maven Eclipse plugin increased memory?

I've read several other questions and answers here, none of which seem to help me. I'm trying to build a mgwt project that will have lots of permutations so the memory setting must be really high. I'm using the maven4eclipse plugin to build with…
nmb1106
  • 385
  • 1
  • 5
  • 20
1
vote
1 answer

How to get the generated GWT source code to run in DEV mode?

I have a multi-module GWT project built with Maven. I would like to have the generated GWT code (location specified by the gen gwt:compile parameter) available for debug in DEV mode. I launch DEV mode from an eclipse launcher. However, when I try to…
Jonathan
  • 705
  • 5
  • 16
1
vote
2 answers

Compatible versions of Gwt, Gxt and Maven

now I'm using in my project GWT 1.7 and I need to upgrade to GWT 2. Also I have: GXT 2.0.1 Maven 2.2.1 gwt-maven-plugin 1.1 maven-compiler-plugin 2.0.2 (and it's source and target configuration is 1.6) So I've changed GWT version to 2.0.4, but my…
Vadym Kovalenko
  • 699
  • 1
  • 11
  • 27
1
vote
1 answer

Generating compilation report with gwt:compileReport

I'm trying to generate a compilation report from my maven-gwt project. According to this site i should see the generated reports in the generated sources folder. However when i run either of those: mvn gwt:compile-report, mvn gwt:compile-report…
Cornelius
  • 291
  • 2
  • 6
  • 21