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
0 answers

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: com.google.gwt.user.server.rpc.UnexpectedException: Service…
user1882812
  • 936
  • 5
  • 18
  • 41
1
vote
1 answer

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 to get GWT to do the same because determining…
Peter Kahn
  • 12,364
  • 20
  • 77
  • 135
0
votes
1 answer

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: java.io.FileNotFoundException:…
Laurent T
  • 1,070
  • 4
  • 13
  • 25
0
votes
1 answer

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 following message: 16:47:13.063 [ERROR] [tempoui]…
Laurent T
  • 1,070
  • 4
  • 13
  • 25
0
votes
0 answers

Filtering in GWT modules with maven and gwt-maven-plugin

I have a GWT project, with 3 modules : - MyProject - MyProjectProduit - CatalogueConnecte I need to have some resources (html files) filtered, to get the ${project.version} in them. The war generated by maven have this format…
user2178964
  • 124
  • 6
  • 16
  • 40
0
votes
1 answer

How to tell gwt-maven-plugin not to use certain parameters when calling the GWT-compiler

I am trying to migrate a GWT-2.0.2 project to the net.ltgt.gwt.maven:gwt-maven-plugin, but it seems to be calling the GWT-compiler with parameters that weren't recognized back in times of GWT 2.0.2, like -deploy, -sourceLevel etc. I know it is…
Jaroslav Záruba
  • 4,694
  • 5
  • 39
  • 58
0
votes
1 answer

"No source code is available for type... did you forget to inherit", same module, just sibling source-directory (migrating the gwt-maven-plugin)

I am getting "No source code is available for type net.jzaruba.theapp.data.ColorFormResource; did you forget to inherit a required module?" error(s) in a class (net.jzaruba.theapp.client.TheEntryPoint) that is sitting in the same maven module, just…
Jaroslav Záruba
  • 4,694
  • 5
  • 39
  • 58
0
votes
0 answers

Maven install of a GWT module changes line endings from LF to CRLF

I have a situation where I clone a git repo of a project that includes GWT and then I do a mvn clean install which includes GWT compilation of permutations. After the mvn clean install I do a git status and see a whole slew of "modified" files. But…
Woodchuck
  • 3,869
  • 2
  • 39
  • 70
0
votes
1 answer

Exclude Maven Dependency during Eclipse Application Runtime

When I try to run a Java Application on Eclipse, a conflict between two dependencies is causing the application to fail. I am trying to upgrade my project Java version from OracleJDK 8 to OpenJDK 11. As a result, I also had to also needed to update…
Chen
  • 103
  • 1
  • 9
0
votes
1 answer

GWT+ Maven and Eclipse compilation for more than one module

I'm using the recommended GWT Maven Plugin and the GWT Eclipse Plugin. Actually I'm using the maven plugin with the appengine-mave-plugin to try to emulate the old Google Eclipse Plugin Super Dev Mode. Following the Google App Engine instructions…
0
votes
1 answer

gwt-maven-plugin : compilation error

I upgraded my gwt from 2.5 to 2.8 after the upgrade am getting the below error gwt-maven-plugin:2.8.0:compile (default) @ SeviS4Web [ERROR] Jun 22, 2017 1:16:06 PM java.util.prefs.WindowsPreferences [ERROR] WARNING: Could not open/create…
Jess
  • 425
  • 1
  • 5
  • 15
0
votes
1 answer

Generating filtered resources from the maven sources:jar execution

I would like to generate a sources jar file for my project, so I have included the maven-source-plugin. However, I am also using the resource filtering plugin to set a version number in a property file for my project. When I generate a final jar…
0
votes
1 answer

gwt-maven-plugin does load the "main" log4j configuration instead of the "test" one

On my maven project, I have a different log4j configuration for development and integration environment and also different ones for test purposes than for the main usage of my webapp. Located in :…
Cyril Dejonghe
  • 171
  • 3
  • 13
0
votes
1 answer

Why can't GWT connect to superdevmode server in multi module maven project?

I recently changed my GWT + App Engine project setup from a single module maven project, to a multi module maven project: My project builds using mvn install (on the parent) with no errors, and as long as the whole project has been compiled, it…
slugmandrew
  • 1,776
  • 2
  • 25
  • 45
0
votes
1 answer

GWT: "No source code is available for type" after import

I am having an issue importing a GWT libray that I have created using org.codehaus.mojo GWT plugin. The project classes compile fine, and work fine when I create an entry point within the same project. However, when I compile the project as a .jar,…
zakaria amine
  • 3,412
  • 2
  • 20
  • 35