Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Thomas Broyer
On Tuesday, May 9, 2017 at 1:45:00 PM UTC+2, Frederik Van Hoyweghen wrote: > > I tried both the command line (mvn gwt:compile) and via the IntelliJ Maven > plugin. > Indeed, binding the execution to the prepare-package phase and running *mvn > gwt:compile@compile-common *works, and I'm glad it

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Frederik Van Hoyweghen
I tried both the command line (mvn gwt:compile) and via the IntelliJ Maven plugin. Indeed, binding the execution to the prepare-package phase and running *mvn gwt:compile@compile-common *works, and I'm glad it does. If I'm reading what you're saying correctly, this means that there is no way to

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Thomas Broyer
On Tuesday, May 9, 2017 at 1:11:04 PM UTC+2, Frederik Van Hoyweghen wrote: > > > > On Tuesday, May 9, 2017 at 12:59:17 PM UTC+2, Thomas Broyer wrote: >> >> >> I wouldn't put any / into the plugin-level >> , and only put them into the . >> > > That's what I figured, but it seems to be a require

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Frederik Van Hoyweghen
On Tuesday, May 9, 2017 at 12:59:17 PM UTC+2, Thomas Broyer wrote: > > > I wouldn't put any / into the plugin-level > , and only put them into the . > That's what I figured, but it seems to be a required property (The parameters 'moduleName' for goal net.ltgt.gwt.maven:gwt-maven-plugin:1.0-

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Thomas Broyer
On Tuesday, May 9, 2017 at 12:33:57 PM UTC+2, Frederik Van Hoyweghen wrote: > > This indeed seems to be what I was looking for, thank you. > Are there any obvious downsides to doing it like this, with multiple > executions? > Each module compilation will fork a new GWT compiler process, rather

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Frederik Van Hoyweghen
This indeed seems to be what I was looking for, thank you. Are there any obvious downsides to doing it like this, with multiple executions? Does it matter which specific moduleName I specify within the tag, or should I just pick 1 arbitrary one there and put the others within the tag? I very

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Thomas Broyer
On Tuesday, May 9, 2017 at 11:27:25 AM UTC+2, Frederik Van Hoyweghen wrote: > > Thanks for the replies. > > I already took a look at the issue on the plugin's github: > https://github.com/tbroyer/gwt-maven-plugin/issues/57 >

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread Frederik Van Hoyweghen
Thanks for the replies. I already took a look at the issue on the plugin's github: https://github.com/tbroyer/gwt-maven-plugin/issues/57 Sadly, th

Re: Multiple GWT modules in one Maven module

2017-05-09 Thread David
In my project I have many modules. What I did is simple create a gwt-lib maven module per GWT module. Those modules served different purposes so it made sense to split them in smaller artifacts. In some cases I moved the code around so that I join multiple modules into one big module instead. Ano

Re: Multiple GWT modules in one Maven module

2017-05-08 Thread Thomas Broyer
On Monday, May 8, 2017 at 6:18:06 PM UTC+2, Frederik Van Hoyweghen wrote: > > Hey everyone, > > We are currently migrating our project away from using Ant, to Maven. > > Along with this migration, we also tried to follow some of the project > structuring that is recommended for a maven project.

Multiple GWT modules in one Maven module

2017-05-08 Thread Frederik Van Hoyweghen
Hey everyone, We are currently migrating our project away from using Ant, to Maven. Along with this migration, we also tried to follow some of the project structuring that is recommended for a maven project. Our *Maven* GWT module contains multiple GWT modules, but I'm struggling with making t