Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread vitrums
Oh well, it seems that I totally overlooked GWT plugin documentation site. 
Thank you, it is exactly what I've been looking for. Perhaps, it's worth to 
add a line such as "For Eclipse IDE users refer to step-by-step 
instructions at 
http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/maven/Maven.html"; 
in the aforementioned resources. I was so close to give up on everything...

On Monday, November 21, 2016 at 10:33:17 PM UTC+3, Juan Pablo Gardella 
wrote:
>
> Try to install last gwt eclipse plugin first: 
> http://gwt-plugins.github.io/documentation/
>
> Regarding launchers: 
> http://eclipsesnippets.blogspot.com.ar/2007/07/tip-creating-and-sharing-launch.html
> Basically, you have to create them.
>
> Regards,
> Juan
>
>
> On Mon, 21 Nov 2016 at 16:27 vitrums > 
> wrote:
>
>> Sorry, but I'm not sure where I can find these lines. Searched within my 
>> eclipse folder, but no match. Also, it looks like these settings are 
>>  global and may affect all other projects.
>>
>>
>> On Monday, November 21, 2016 at 10:07:38 PM UTC+3, Juan Pablo Gardella 
>> wrote:
>>
>>>
>>> Install GWT eclipse plugin and then use eclipse launchers to start them.
>>>
>>>
>>> *SDM launcher:*
>>>
>>> ...
>>> >> value="com.google.gwt.dev.DevMode"/>
>>> >> value="-war *YOURWRAR *-logLevel INFO -port auto -remoteUI 
>>> "${gwt_remote_ui_server_port}:${unique_id}" -codeServerPort 9997 
>>> *ENTRYPOINTHERE* "/>
>>> ...
>>>
>>>
>>> Server launcher:
>>> (Execute maven goals)
>>>
>>> Regards,
>>> Juan
>>>
>>> On Mon, 21 Nov 2016 at 16:01 vitrums  wrote:
>>>
 Thank you. I tried it before, but I had a syntax error in that line 
 (missed a "-" before a key).

 I wonder now though how to run this sample app within Eclipse with 
 *gwt:devmode* goal on Jetty. Examining the modules with Project 
 Explorer shows, that src/main/webapp is related to **-server* module 
 and therefore, *mvn install* produces the target within this module. 
 Hence, running mvn *gwt:devmode* on the project opens GWT Development 
 Mode window but finds no startup URL:

 [WARN] No startup URLs supplied and no plausible ones found -- 
 use -startupUrl 


 On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella 
 wrote:

> Did you try?
>
> mvn archetype:generate \
>
> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/
>  \
>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>-DarchetypeArtifactId=moduler-webapp \
>-DarchetypeVersion=1.0-SNAPSHOT
>
>
>
> On Mon, 21 Nov 2016 at 14:48 vitrums  wrote:
>
 In the latest GWT 2.8.0 distribution *webAppCreator *tool generates 
 *pom.xml 
>> *for a sample project from 
>> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in 
>> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as 
>> *net.ltgt.gwt.maven*. According to 
>> https://tbroyer.github.io/gwt-maven-plugin/index.html this project 
>> disctincts itself from *Mojo's Maven Plugin for GWT* 
>> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The 
>> provided documentation is very succinct compared to Mojo's; it says 
>> little 
>> if anything about multi-moduling (provides a link at 
>> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get 
>> my head around... simply how to use it). According to the site the 
>> latest 
>> update was made in Jan, while the Mojo's docs were updated in Oct. of 
>> this 
>> year. And I could find a ready to use example of multi-module GWT app 
>> with 
>> maven at https://github.com/steinsag/gwt-maven-example, which 
>> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I 
>> can adapt this solution to use *net.ltgt.gwt.maven *
>> *gwt-maven-plugin *somehow, or what should I do?
>>
>> -- 
>> You received this message because you are subscribed to the Google 
>> Groups "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, 
>> send an email to google-web-toolkit+unsubscr...@googlegroups.com.
>>
> To post to this group, send email to google-we...@googlegroups.com.
>
>
>> Visit this group at 
>> https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
> -- 
 You received this message because you are subscribed to the Google 
 Groups "GWT Users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-we...@googlegroups.com.
 Visit this group at https://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> You received this messa

Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread Juan Pablo Gardella
Try to install last gwt eclipse plugin first:
http://gwt-plugins.github.io/documentation/

Regarding launchers:
http://eclipsesnippets.blogspot.com.ar/2007/07/tip-creating-and-sharing-launch.html
Basically, you have to create them.

Regards,
Juan


On Mon, 21 Nov 2016 at 16:27 vitrums  wrote:

> Sorry, but I'm not sure where I can find these lines. Searched within my
> eclipse folder, but no match. Also, it looks like these settings are
>  global and may affect all other projects.
>
>
> On Monday, November 21, 2016 at 10:07:38 PM UTC+3, Juan Pablo Gardella
> wrote:
>
>
> Install GWT eclipse plugin and then use eclipse launchers to start them.
>
>
> *SDM launcher:*
>
> ...
>  value="com.google.gwt.dev.DevMode"/>
>  value="-war *YOURWRAR *-logLevel INFO -port auto -remoteUI
> "${gwt_remote_ui_server_port}:${unique_id}" -codeServerPort 9997
> *ENTRYPOINTHERE* "/>
> ...
>
>
> Server launcher:
> (Execute maven goals)
>
> Regards,
> Juan
>
> On Mon, 21 Nov 2016 at 16:01 vitrums  wrote:
>
> Thank you. I tried it before, but I had a syntax error in that line
> (missed a "-" before a key).
>
> I wonder now though how to run this sample app within Eclipse with
> *gwt:devmode* goal on Jetty. Examining the modules with Project Explorer
> shows, that src/main/webapp is related to **-server* module and
> therefore, *mvn install* produces the target within this module. Hence,
> running mvn *gwt:devmode* on the project opens GWT Development Mode
> window but finds no startup URL:
>
> [WARN] No startup URLs supplied and no plausible ones found -- use
> -startupUrl
>
>
> On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella
> wrote:
>
> Did you try?
>
> mvn archetype:generate \
>
> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \
>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>-DarchetypeArtifactId=moduler-webapp \
>-DarchetypeVersion=1.0-SNAPSHOT
>
>
>
> On Mon, 21 Nov 2016 at 14:48 vitrums  wrote:
>
> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml
> *for a sample project from
> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in
> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as
> *net.ltgt.gwt.maven*. According to
> https://tbroyer.github.io/gwt-maven-plugin/index.html this project
> disctincts itself from *Mojo's Maven Plugin for GWT*
> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The
> provided documentation is very succinct compared to Mojo's; it says little
> if anything about multi-moduling (provides a link at
> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my
> head around... simply how to use it). According to the site the latest
> update was made in Jan, while the Mojo's docs were updated in Oct. of this
> year. And I could find a ready to use example of multi-module GWT app with
> maven at https://github.com/steinsag/gwt-maven-example, which
> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I can
> adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin *somehow,
> or what should I do?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
>
> To post to this group, send email to google-we...@googlegroups.com.
>
>
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-we...@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread vitrums
Sorry, but I'm not sure where I can find these lines. Searched within my 
eclipse folder, but no match. Also, it looks like these settings are 
 global and may affect all other projects.

On Monday, November 21, 2016 at 10:07:38 PM UTC+3, Juan Pablo Gardella 
wrote:
>
>
> Install GWT eclipse plugin and then use eclipse launchers to start them.
>
>
> *SDM launcher:*
>
> ...
>  value="com.google.gwt.dev.DevMode"/>
>  value="-war *YOURWRAR *-logLevel INFO -port auto -remoteUI 
> "${gwt_remote_ui_server_port}:${unique_id}" -codeServerPort 9997 
> *ENTRYPOINTHERE* "/>
> ...
>
>
> Server launcher:
> (Execute maven goals)
>
> Regards,
> Juan
>
> On Mon, 21 Nov 2016 at 16:01 vitrums > 
> wrote:
>
>> Thank you. I tried it before, but I had a syntax error in that line 
>> (missed a "-" before a key).
>>
>> I wonder now though how to run this sample app within Eclipse with 
>> *gwt:devmode* goal on Jetty. Examining the modules with Project Explorer 
>> shows, that src/main/webapp is related to **-server* module and 
>> therefore, *mvn install* produces the target within this module. Hence, 
>> running mvn *gwt:devmode* on the project opens GWT Development Mode 
>> window but finds no startup URL:
>>
>> [WARN] No startup URLs supplied and no plausible ones found -- 
>> use -startupUrl 
>>
>>
>> On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella 
>> wrote:
>>
>>> Did you try?
>>>
>>> mvn archetype:generate \
>>>
>>> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ 
>>> \
>>>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>>>-DarchetypeArtifactId=moduler-webapp \
>>>-DarchetypeVersion=1.0-SNAPSHOT
>>>
>>>
>>>
>>> On Mon, 21 Nov 2016 at 14:48 vitrums  wrote:
>>>
>> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml 
 *for a sample project from 
 *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in 
 *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as 
 *net.ltgt.gwt.maven*. According to 
 https://tbroyer.github.io/gwt-maven-plugin/index.html this project 
 disctincts itself from *Mojo's Maven Plugin for GWT* 
 https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The 
 provided documentation is very succinct compared to Mojo's; it says little 
 if anything about multi-moduling (provides a link at 
 https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my 
 head around... simply how to use it). According to the site the latest 
 update was made in Jan, while the Mojo's docs were updated in Oct. of this 
 year. And I could find a ready to use example of multi-module GWT app with 
 maven at https://github.com/steinsag/gwt-maven-example, which 
 unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I 
 can adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin 
 *somehow, 
 or what should I do?

 -- 
 You received this message because you are subscribed to the Google 
 Groups "GWT Users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to google-web-toolkit+unsubscr...@googlegroups.com.

>>> To post to this group, send email to google-we...@googlegroups.com.
>>>
>>>
 Visit this group at https://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit+unsubscr...@googlegroups.com .
>> To post to this group, send email to google-we...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread Juan Pablo Gardella
Install GWT eclipse plugin and then use eclipse launchers to start them.


*SDM launcher:*

...


...


Server launcher:
(Execute maven goals)

Regards,
Juan

On Mon, 21 Nov 2016 at 16:01 vitrums  wrote:

> Thank you. I tried it before, but I had a syntax error in that line
> (missed a "-" before a key).
>
> I wonder now though how to run this sample app within Eclipse with
> *gwt:devmode* goal on Jetty. Examining the modules with Project Explorer
> shows, that src/main/webapp is related to **-server* module and
> therefore, *mvn install* produces the target within this module. Hence,
> running mvn *gwt:devmode* on the project opens GWT Development Mode
> window but finds no startup URL:
>
> [WARN] No startup URLs supplied and no plausible ones found -- use
> -startupUrl
>
>
> On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella
> wrote:
>
> Did you try?
>
> mvn archetype:generate \
>
> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \
>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>-DarchetypeArtifactId=moduler-webapp \
>-DarchetypeVersion=1.0-SNAPSHOT
>
>
>
> On Mon, 21 Nov 2016 at 14:48 vitrums  wrote:
>
> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml
> *for a sample project from
> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in
> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as
> *net.ltgt.gwt.maven*. According to
> https://tbroyer.github.io/gwt-maven-plugin/index.html this project
> disctincts itself from *Mojo's Maven Plugin for GWT*
> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The
> provided documentation is very succinct compared to Mojo's; it says little
> if anything about multi-moduling (provides a link at
> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my
> head around... simply how to use it). According to the site the latest
> update was made in Jan, while the Mojo's docs were updated in Oct. of this
> year. And I could find a ready to use example of multi-module GWT app with
> maven at https://github.com/steinsag/gwt-maven-example, which
> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I can
> adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin *somehow,
> or what should I do?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
>
> To post to this group, send email to google-we...@googlegroups.com.
>
>
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread vitrums
Thank you. I tried it before, but I had a syntax error in that line (missed 
a "-" before a key).

I wonder now though how to run this sample app within Eclipse with 
*gwt:devmode* goal on Jetty. Examining the modules with Project Explorer 
shows, that src/main/webapp is related to **-server* module and therefore, *mvn 
install* produces the target within this module. Hence, running mvn 
*gwt:devmode* on the project opens GWT Development Mode window but finds no 
startup URL:

[WARN] No startup URLs supplied and no plausible ones found -- use 
-startupUrl 

On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella wrote:
>
> Did you try?
>
> mvn archetype:generate \
>
> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \
>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>-DarchetypeArtifactId=moduler-webapp \
>-DarchetypeVersion=1.0-SNAPSHOT
>
>
>
> On Mon, 21 Nov 2016 at 14:48 vitrums > 
> wrote:
>
>> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml 
>> *for a sample project from 
>> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in 
>> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as 
>> *net.ltgt.gwt.maven*. According to 
>> https://tbroyer.github.io/gwt-maven-plugin/index.html this project 
>> disctincts itself from *Mojo's Maven Plugin for GWT* 
>> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The 
>> provided documentation is very succinct compared to Mojo's; it says little 
>> if anything about multi-moduling (provides a link at 
>> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my 
>> head around... simply how to use it). According to the site the latest 
>> update was made in Jan, while the Mojo's docs were updated in Oct. of this 
>> year. And I could find a ready to use example of multi-module GWT app with 
>> maven at https://github.com/steinsag/gwt-maven-example, which 
>> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I can 
>> adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin *somehow, 
>> or what should I do?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit+unsubscr...@googlegroups.com .
>> To post to this group, send email to google-we...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread vitrums
Sure, I ran

mvn archetype:generate 
DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ 
DarchetypeGroupId=net.ltgt.gwt.archetypes 
DarchetypeArtifactId=modular-webapp DarchetypeVersion=1.0-SNAPSHOT

and got

[INFO] Scanning for projects...
[INFO] 

[INFO] BUILD FAILURE
[INFO] 

[INFO] Total time: 0.070 s
[INFO] Finished at: 2016-11-21T21:23:14+03:00
[INFO] Final Memory: 5M/123M
[INFO] 

[ERROR] The goal you specified requires a project to execute but there is 
no POM in this directory (c:\temp\mvnGwtTestProjects). Please verify you 
invoked Maven from the correct directory. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, 
please read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException


On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella wrote:
>
> Did you try?
>
> mvn archetype:generate \
>
> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \
>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>-DarchetypeArtifactId=moduler-webapp \
>-DarchetypeVersion=1.0-SNAPSHOT
>
>
>
> On Mon, 21 Nov 2016 at 14:48 vitrums > 
> wrote:
>
>> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml 
>> *for a sample project from 
>> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in 
>> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as 
>> *net.ltgt.gwt.maven*. According to 
>> https://tbroyer.github.io/gwt-maven-plugin/index.html this project 
>> disctincts itself from *Mojo's Maven Plugin for GWT* 
>> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The 
>> provided documentation is very succinct compared to Mojo's; it says little 
>> if anything about multi-moduling (provides a link at 
>> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my 
>> head around... simply how to use it). According to the site the latest 
>> update was made in Jan, while the Mojo's docs were updated in Oct. of this 
>> year. And I could find a ready to use example of multi-module GWT app with 
>> maven at https://github.com/steinsag/gwt-maven-example, which 
>> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I can 
>> adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin *somehow, 
>> or what should I do?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit+unsubscr...@googlegroups.com .
>> To post to this group, send email to google-we...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread vitrums
Sure, I ran

mvn archetype:generate 
DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ 
DarchetypeGroupId=net.ltgt.gwt.archetypes 
DarchetypeArtifactId=modular-webapp DarchetypeVersion=1.0-SNAPSHOT


and got


On Monday, November 21, 2016 at 9:16:15 PM UTC+3, Juan Pablo Gardella wrote:
>
> Did you try?
>
> mvn archetype:generate \
>
> -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \
>-DarchetypeGroupId=net.ltgt.gwt.archetypes \
>-DarchetypeArtifactId=moduler-webapp \
>-DarchetypeVersion=1.0-SNAPSHOT
>
>
>
> On Mon, 21 Nov 2016 at 14:48 vitrums > 
> wrote:
>
>> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml 
>> *for a sample project from 
>> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in 
>> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as 
>> *net.ltgt.gwt.maven*. According to 
>> https://tbroyer.github.io/gwt-maven-plugin/index.html this project 
>> disctincts itself from *Mojo's Maven Plugin for GWT* 
>> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The 
>> provided documentation is very succinct compared to Mojo's; it says little 
>> if anything about multi-moduling (provides a link at 
>> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my 
>> head around... simply how to use it). According to the site the latest 
>> update was made in Jan, while the Mojo's docs were updated in Oct. of this 
>> year. And I could find a ready to use example of multi-module GWT app with 
>> maven at https://github.com/steinsag/gwt-maven-example, which 
>> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I can 
>> adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin *somehow, 
>> or what should I do?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit+unsubscr...@googlegroups.com .
>> To post to this group, send email to google-we...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Where can I find a sample for multi-module GWT app built with maven?

2016-11-21 Thread Juan Pablo Gardella
Did you try?

mvn archetype:generate \
   -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \
   -DarchetypeGroupId=net.ltgt.gwt.archetypes \
   -DarchetypeArtifactId=moduler-webapp \
   -DarchetypeVersion=1.0-SNAPSHOT



On Mon, 21 Nov 2016 at 14:48 vitrums  wrote:

> In the latest GWT 2.8.0 distribution *webAppCreator *tool generates *pom.xml
> *for a sample project from
> *com\google\gwt\user\tools\templates\maven\pom.xmlsrc* located in
> *gwt-user.jar*. The *groupId* for *gwt-maven-plugin* is now set as
> *net.ltgt.gwt.maven*. According to
> https://tbroyer.github.io/gwt-maven-plugin/index.html this project
> disctincts itself from *Mojo's Maven Plugin for GWT*
> https://gwt-maven-plugin.github.io/gwt-maven-plugin/index.html. The
> provided documentation is very succinct compared to Mojo's; it says little
> if anything about multi-moduling (provides a link at
> https://github.com/tbroyer/gwt-maven-archetypes/, which I can't get my
> head around... simply how to use it). According to the site the latest
> update was made in Jan, while the Mojo's docs were updated in Oct. of this
> year. And I could find a ready to use example of multi-module GWT app with
> maven at https://github.com/steinsag/gwt-maven-example, which
> unfortunately uses *org.codehaus.mojo's gwt-maven-plugin*. May be I can
> adapt this solution to use *net.ltgt.gwt.maven **gwt-maven-plugin *somehow,
> or what should I do?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.