Tagged Questions
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"; ...
0
votes
2answers
56 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.
...
0
votes
0answers
110 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
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 ...
2
votes
1answer
89 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 ...
1
vote
2answers
258 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 ...
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 ...
0
votes
1answer
102 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
430 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 \
...
0
votes
1answer
630 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 ...
1
vote
2answers
1k views
complier 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
210 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 ...
3
votes
2answers
728 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, ...
0
votes
1answer
122 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
993 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
99 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 ...
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
3answers
924 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
0answers
864 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 ...
1
vote
0answers
487 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
640 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:
...
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] ...
2
votes
1answer
523 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. ...