Facilitates GWT web application development using Maven as build tool.

learn more… | top users | synonyms

1
vote
2answers
1k views

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 ...
0
votes
1answer
23 views

Make GWT Maven Plugin use -XdisableUpdateCheck flag during GWT compile

I have several GWT-based projects that won't compile unless the "-XdisableUpdateCheck" flag is passed to the GWT compiler. I've been trying to mavenize these projects by using the "gwt-maven-plugin"; ...
3
votes
2answers
749 views

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, ...
4
votes
2answers
123 views

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 ...
2
votes
1answer
93 views

GWT blamed RequestFactory ValidationTool must be run on on sub module(project) when launching main project

GWT 2.5.0/Google Plugin for Eclipse/m2e/GWT-maven-plugin 2.5.0/Request Factory I configs my project according to the GWT wiki working with maven and it works pretty well, but has some trouble in my ...
0
votes
2answers
58 views

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. ...
1
vote
2answers
261 views

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 ...
0
votes
0answers
114 views

GWT Maven Archetype in Eclipse - Unknown output directory

I've created a new Maven project using the gwt-maven-plugin archetype in Eclipse Juno. After creating the project I get a build error: Unknown Google Web App Problem: The output directory for ...
1
vote
1answer
140 views

Should hosted.html be removed from GWT app's .war file? How?

We build a GWT app (using gwt-maven-plugin) resulting in a .war file. Currently this .war file contains a file called hosted.html, which is used to run in development (née hosted) mode, when query ...
1
vote
1answer
36 views

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 ...
0
votes
0answers
88 views

GWT-Maven using jetty: localhost:8080 just shows empty directory

i use gwt-maven plugin in my eclipse and i deploy my gwt web application via jetty. This is how my jetty works: public class Main { public static void main(String[] args) { Server server ...
1
vote
2answers
2k views

Maven build fails upon compiling widgetset

I am having trouble compiling my widgetset using maven and vaadin. when i run this command: mvn vaadin:update-widgetset install Stack trace [INFO] Scanning for projects... [INFO] ...
0
votes
0answers
59 views

Generated project with gwt-maven-plugin : eclipse

I created a GWT project with mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo -DarchetypeArtifactId=gwt-maven-plugin -DarchetypeVersion=2.5.0 Imported the project in eclipse juno. First ...
0
votes
1answer
76 views

Can't see java code when runnig GWT 2.5 in SuperDev mode

I have a GWT 2.5 app following Thomas Broyer's maven archetypes. I've followed the guidelines explained in the SO question and everything seems to be OK. The code server is running properly. I ...
1
vote
0answers
102 views

GWT: dynamic logging disabled by setting gwt-maven-plugin property disableClassMetadata to true

We recently added dynamic logging to our gwt web application. In order to achieve this we added a little javascript function to our webapp.gwt.xml file, which looks for the "?logging" parameter in ...
1
vote
1answer
144 views

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: ...
1
vote
0answers
96 views

GWT 2.5.0 mvn install error “Rebind result <class> must be a class”

Problem: I run mvn install on my GWT 2.5.0 project that I built with the gwt-maven-plugin and get the error Rebind result 'c3gw.fwk.gui.client.ClientFactory' must be a class. This is a snippet of my ...
1
vote
0answers
128 views

UnExpectedException - UnsatisfiedLinkError

I'm working with a maven-gwt Projekt using m2e plugin. I implemented a rpc for having access to my server-side datastore. However starting my webclient gives me an UnsatisfiedLinkError: ...
0
votes
1answer
104 views

GWT 404 Error on RPC

i have a problem with gwt and rpc. I implementet a Service for my rpc: @RemoteServiceRelativePath("search") public interface SearchService extends RemoteService { List<Result> ...
0
votes
1answer
439 views

Import project generated by gwt-maven-plugin

i followed the instruction of gwt-maven-plugin, generated then imported the project below, 1) Generate the project $ mvn archetype:generate \ -DarchetypeGroupId=org.codehaus.mojo \ ...
2
votes
3answers
935 views

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 ...
0
votes
1answer
205 views

initializationError in GWT TestCase Execution

I created a project with default module in GWT with maven. and renamed the Test Case class with *Test.java and executed the command mvn package It is not successfully executing the test case, and ...
0
votes
1answer
640 views

GWT. Maven. GWT Module <module_name> 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 ...
0
votes
1answer
181 views

GWT: package struture not respected when generating classes for the hosted mode?

I have a gwt application using the gwt-maven-plugin version 1.2 I can generate my app and run the generated war but when I'm running the hosted mode using mvn gwt:run, it breaks: ...
0
votes
1answer
211 views

Maven GWT Plugin - generateAsync and Generic type

Hi there I successfully installed the GWT Maven plugin and it generates on incremental save the Async RPC services. However I got a little problem, if I use : ArrayList<Whatever> then the ...
0
votes
1answer
76 views

Can gwt analyze dependency like maven does?

How can I get GWT to provide the same dependency insights as mvn dependency:analyze? Maven can report about dependencies (Used undeclared dependencies and Unused declared dependencies). I'd like ...
0
votes
1answer
124 views

gwt - Error when importing a gwt project using Maven import in Eclipse

I am using Eclipse, Version: Indigo Service Release 1. My GWT version is 2.4.0. I installed everything like GWT and Maven related plugins. I am trying to import a existing gwt-maven project. When ...
2
votes
2answers
1k views

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 ...
0
votes
1answer
792 views

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 ...
0
votes
1answer
100 views

GWT client side logging during maven test phase

I'm writing a GWT library and I'm trying to use GWT's Logging capabilities. My maven build trigger some GWTTestCases that tests my library. Is it possible to have and configure the logging output of ...
0
votes
1answer
532 views

How to make GWT Spring project as maven enabled

I have a project which we implemented using GWT and Spring. I want to make the project as maven enabled. How can i achieve that? I have seen GWT maven plugin. Is it definately required? Thanks, ...
0
votes
1answer
360 views

“GWT module may need to be (re)compiled” when deployed into the Tomcat and the war is generated with maven

I got the issue( "GWT module 'SmartWPS' may need to be (re)compiled") while accessing the url. I have generated the war file by running maven-clean-install. I placed the same war file in the /webapp ...
0
votes
0answers
74 views

getting exception while integrating GWT GIN with Maven

getting following exception when running using maven [INFO] auto discovered modules [com.infor.ion.boddesk.ui.sample.Employee] [INFO] Compiling module com.infor.ion.boddesk.ui.sample.Employee ...
2
votes
2answers
1k views

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 ...
2
votes
1answer
532 views

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. ...
0
votes
0answers
871 views

Maven GWT plugin “failed with status 1” error

Am trying to setup a GWT project using the gwt-maven-plugin but struggling to get this going. Have solve the issues around m2eclispe and lifecycle but am getting errors during build as Maven reports ...
0
votes
1answer
636 views

GWT hosted mode fails loading module but the generated war works elsewhere

I'm using maven-gwt-plugin and ext-gwt for my GWT project and when I want to run the hosted mode in eclipse as advised here: http://mojo.codehaus.org/gwt-maven-plugin/user-guide/hosted.html I got the ...
1
vote
0answers
488 views

java crashes when debugging gwt application made by gwt-maven-plugin 2.4.0

This post was originally "unable to debug gwt application made by gwt-maven-plugin 2.4.0" I have created a GWT maven application using gwt-maven-plugin 2.4.0 (working in eclipse helios) mvn ...
2
votes
1answer
646 views

gwt-maven-plugin and hibernate

I'm having a bit of a weird issue here, basically, im using hibernate together with gwt, maven and the gwt maven plugin. However, hibernate fails during initialization with the following message: ...