Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Thomas Broyer


On Monday, October 19, 2020 at 4:43:26 PM UTC+2, Elhanan wrote:
>
> what's the difference between 
> warDir, webappDirectory, workDir,workingDirectory, codeServerWorkDir , 
> devModeWorkDir, tempDir? 
> i mean it's hard to follow all those around.
>

I'm assuming you're using autocompletion in your IDE here, then yes it's 
hard to understand. That's why we have docs ;-)
gwt:compile  
outputs to webappDirectory, and puts its own files into workDir (they will 
be reused between runs for better performance); webappDirectory should 
match outputDirectory and warName of gwt:package-app 
 for 
everything to run smoothly.
gwt:devmode  uses 
warDir and devModeWorkDir, with approximately the same meaning as 
webappDirectory and workDir of gwt:compile, respectively.
gwt:codeserver 
 writes to 
codeServerWorkDir, and possibly launcherDir (which is where your –separate– 
web server would serve static resources)
tempDir comes from gwt:test 
, it's inherited 
from Surefire; gwt:test also has a workDir which can be shared with 
gwt:compile (other work dirs don't have the same layout)

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/e76d0af0-4db3-48ec-98ea-f16d047c375do%40googlegroups.com.


Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Thomas Broyer
If you put your static resources in the public path of your module (by 
default a "public" subpackage next to your *.gwt.xml file), they'll be 
copied (by GWT itself, not the gwt-maven-plugin) to the output next to the 
*.nocache.js and *.cache.* files, so they'll end up in your WAR.
The only difference with using a "more standard" src/main/webapp is that if 
your GWT module has rename-to="myapp", then everything will be in the 
"myapp/" folder.
E.g. you create a src/main/resources/com/example/myapp/public/index.html 
with a  (notice: myapp.nocache.js, 
not myapp/myapp.nocache.js), then you have a myapp/index.html and 
myapp/myapp.nocache.js in your WAR.

On Monday, October 19, 2020 at 1:59:16 PM UTC+2, Elhanan wrote:
>
> hey thomas, the thing is, i wanna do it right without any hacks, but if i 
> demine the pom as gwt-app, the output is just gwt compiled code  with no 
> static html or css resources, if i use war in the pom type, the output is 
> just the static resources. i want the entire artifact to be considered as 
> both html and gwt javascript. 
>
> On Mon, Oct 19, 2020 at 12:50 PM Thomas Broyer  wrote:
>
>> I haven't followed the whole discussion, but if you don't have a need for 
>> shared and server modules (what I call a "standalone" app), then you can 
>> put your HTML file (and associated resources) into your module's public 
>> path 
>> 
>> .
>> You'll then use gwt:devmode for debugging, to take advantage of the 
>> embedded web server to serve your static resources; see 
>> https://tbroyer.github.io/gwt-maven-plugin/codeserver.html#Standalone_applications
>>
>> On Sunday, October 18, 2020 at 5:03:21 PM UTC+2, Elhanan wrote:
>>>
>>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me 
>>> to do it) and i'm in the process of doing so, the thing is there's no 
>>> "Server part" it's meant to operate as a page under cockpit ui 
>>>
>>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com <
>>> lofidewa...@gmail.com> wrote:
>>>
 Hmm it is not good to have "server" part and "client" part (web 
 browser, GWT) in one Maven module... The best practice is always to 
 separate them.

 I wrote some simple explanation in this project: 
 https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules, 
 check the explanation over there...
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:

> i don't know, right now i'm having trouble to even compile everything, 
> i mean, i can either compile all the static files  (html WEB-INF) into a 
> war, OR i can compile the gwt sources, depending on what i place in 
> pom.xml 
> (gwt-app or war) i was trying to have it all in one module
>
> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com  
> wrote:
>
>> Is it not possible to add those contents into an artifact with 
>> assembly for example? So that you can use it later for the dependency? 
>> I'm 
>> doing this in this example:
>> https://github.com/gwtboot/domino-rest-enum-date
>>
>> Hope this helps.
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>
>>> hi..
>>> i have a submodule of a gwt project that it's artifact are meant to 
>>> be included as part of the main artifact (which is a pom containing a 
>>> debian installer) 
>>> usually i would use copy-depdencies plugin to copy the jars into the 
>>> main artifact, but in this case there's no jar, is there a way i can 
>>> copy 
>>> the output directory of that submodule into the main artifact? 
>>>
>> -- 
>> You received this message because you are subscribed to a topic in 
>> the Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "GWT Users" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
  
 

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread lofid...@gmail.com
Therefore I'm using the simplest gwt:devmode... Standalone is the best... 
only 

But I think you could just use the default dirs...

Elhanan schrieb am Montag, 19. Oktober 2020 um 16:43:26 UTC+2:

> what's the difference between 
> warDir, webappDirectory, workDir,workingDirectory, codeServerWorkDir , 
> devModeWorkDir, tempDir? 
> i mean it's hard to follow all those around.
>
> On Mon, Oct 19, 2020 at 2:58 PM Elhanan Maayan  wrote:
>
>> hey thomas, the thing is, i wanna do it right without any hacks, but if i 
>> demine the pom as gwt-app, the output is just gwt compiled code  with no 
>> static html or css resources, if i use war in the pom type, the output is 
>> just the static resources. i want the entire artifact to be considered as 
>> both html and gwt javascript. 
>>
>> On Mon, Oct 19, 2020 at 12:50 PM Thomas Broyer  wrote:
>>
>>> I haven't followed the whole discussion, but if you don't have a need 
>>> for shared and server modules (what I call a "standalone" app), then you 
>>> can put your HTML file (and associated resources) into your module's 
>>> public path 
>>> 
>>> .
>>> You'll then use gwt:devmode for debugging, to take advantage of the 
>>> embedded web server to serve your static resources; see 
>>> https://tbroyer.github.io/gwt-maven-plugin/codeserver.html#Standalone_applications
>>>
>>> On Sunday, October 18, 2020 at 5:03:21 PM UTC+2, Elhanan wrote:

 yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me 
 to do it) and i'm in the process of doing so, the thing is there's no 
 "Server part" it's meant to operate as a page under cockpit ui 

 On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com  
 wrote:

> Hmm it is not good to have "server" part and "client" part (web 
> browser, GWT) in one Maven module... The best practice is always to 
> separate them.
>
> I wrote some simple explanation in this project: 
> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven 
> modules, check the explanation over there...
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>
>> i don't know, right now i'm having trouble to even compile 
>> everything, i mean, i can either compile all the static files  (html 
>> WEB-INF) into a war, OR i can compile the gwt sources, depending on what 
>> i 
>> place in pom.xml (gwt-app or war) i was trying to have it all in one 
>> module
>>
>> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Is it not possible to add those contents into an artifact with 
>>> assembly for example? So that you can use it later for the dependency? 
>>> I'm 
>>> doing this in this example:
>>> https://github.com/gwtboot/domino-rest-enum-date
>>>
>>> Hope this helps.
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>>
 hi..
 i have a submodule of a gwt project that it's artifact are meant to 
 be included as part of the main artifact (which is a pom containing a 
 debian installer) 
 usually i would use copy-depdencies plugin to copy the jars into 
 the main artifact, but in this case there's no jar, is there a way i 
 can 
 copy the output directory of that submodule into the main artifact? 

>>> -- 
>>> You received this message because you are subscribed to a topic in 
>>> the Google Groups "GWT Users" group.
>>> To unsubscribe from this topic, visit 
>>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to 
>>> google-web-tool...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to 
> google-web-tool...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
>  
> 
> .
>
 -- 
>>> You received this message because you are 

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Elhanan Maayan
what's the difference between
warDir, webappDirectory, workDir,workingDirectory, codeServerWorkDir ,
devModeWorkDir, tempDir?
i mean it's hard to follow all those around.

On Mon, Oct 19, 2020 at 2:58 PM Elhanan Maayan  wrote:

> hey thomas, the thing is, i wanna do it right without any hacks, but if i
> demine the pom as gwt-app, the output is just gwt compiled code  with no
> static html or css resources, if i use war in the pom type, the output is
> just the static resources. i want the entire artifact to be considered as
> both html and gwt javascript.
>
> On Mon, Oct 19, 2020 at 12:50 PM Thomas Broyer  wrote:
>
>> I haven't followed the whole discussion, but if you don't have a need for
>> shared and server modules (what I call a "standalone" app), then you can
>> put your HTML file (and associated resources) into your module's public
>> path
>> 
>> .
>> You'll then use gwt:devmode for debugging, to take advantage of the
>> embedded web server to serve your static resources; see
>> https://tbroyer.github.io/gwt-maven-plugin/codeserver.html#Standalone_applications
>>
>> On Sunday, October 18, 2020 at 5:03:21 PM UTC+2, Elhanan wrote:
>>>
>>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me
>>> to do it) and i'm in the process of doing so, the thing is there's no
>>> "Server part" it's meant to operate as a page under cockpit ui
>>>
>>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com <
>>> lofidewa...@gmail.com> wrote:
>>>
 Hmm it is not good to have "server" part and "client" part (web
 browser, GWT) in one Maven module... The best practice is always to
 separate them.

 I wrote some simple explanation in this project:
 https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules,
 check the explanation over there...
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:

> i don't know, right now i'm having trouble to even compile everything,
> i mean, i can either compile all the static files  (html WEB-INF) into a
> war, OR i can compile the gwt sources, depending on what i place in 
> pom.xml
> (gwt-app or war) i was trying to have it all in one module
>
> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com 
> wrote:
>
>> Is it not possible to add those contents into an artifact with
>> assembly for example? So that you can use it later for the dependency? 
>> I'm
>> doing this in this example:
>> https://github.com/gwtboot/domino-rest-enum-date
>>
>> Hope this helps.
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>
>>> hi..
>>> i have a submodule of a gwt project that it's artifact are meant to
>>> be included as part of the main artifact (which is a pom containing a
>>> debian installer)
>>> usually i would use copy-depdencies plugin to copy the jars into the
>>> main artifact, but in this case there's no jar, is there a way i can 
>>> copy
>>> the output directory of that submodule into the main artifact?
>>>
>> --
>> You received this message because you are subscribed to a topic in
>> the Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>> 
>> .
>>
> --
 You received this message because you are subscribed to a topic in the
 Google Groups "GWT Users" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
 
 .

>>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> 

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Elhanan Maayan
hey thomas, the thing is, i wanna do it right without any hacks, but if i
demine the pom as gwt-app, the output is just gwt compiled code  with no
static html or css resources, if i use war in the pom type, the output is
just the static resources. i want the entire artifact to be considered as
both html and gwt javascript.

On Mon, Oct 19, 2020 at 12:50 PM Thomas Broyer  wrote:

> I haven't followed the whole discussion, but if you don't have a need for
> shared and server modules (what I call a "standalone" app), then you can
> put your HTML file (and associated resources) into your module's public
> path
> 
> .
> You'll then use gwt:devmode for debugging, to take advantage of the
> embedded web server to serve your static resources; see
> https://tbroyer.github.io/gwt-maven-plugin/codeserver.html#Standalone_applications
>
> On Sunday, October 18, 2020 at 5:03:21 PM UTC+2, Elhanan wrote:
>>
>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me
>> to do it) and i'm in the process of doing so, the thing is there's no
>> "Server part" it's meant to operate as a page under cockpit ui
>>
>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com 
>> wrote:
>>
>>> Hmm it is not good to have "server" part and "client" part (web browser,
>>> GWT) in one Maven module... The best practice is always to separate them.
>>>
>>> I wrote some simple explanation in this project:
>>> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules,
>>> check the explanation over there...
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>>>
 i don't know, right now i'm having trouble to even compile everything,
 i mean, i can either compile all the static files  (html WEB-INF) into a
 war, OR i can compile the gwt sources, depending on what i place in pom.xml
 (gwt-app or war) i was trying to have it all in one module

 On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com 
 wrote:

> Is it not possible to add those contents into an artifact with
> assembly for example? So that you can use it later for the dependency? I'm
> doing this in this example:
> https://github.com/gwtboot/domino-rest-enum-date
>
> Hope this helps.
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>
>> hi..
>> i have a submodule of a gwt project that it's artifact are meant to
>> be included as part of the main artifact (which is a pom containing a
>> debian installer)
>> usually i would use copy-depdencies plugin to copy the jars into the
>> main artifact, but in this case there's no jar, is there a way i can copy
>> the output directory of that submodule into the main artifact?
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-tool...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
> 
> .
>
 --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "GWT Users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/d5a08b0a-33d0-4973-864c-eada9c7481e5o%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from 

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Thomas Broyer
I haven't followed the whole discussion, but if you don't have a need for 
shared and server modules (what I call a "standalone" app), then you can 
put your HTML file (and associated resources) into your module's public path 

.
You'll then use gwt:devmode for debugging, to take advantage of the 
embedded web server to serve your static resources; see 
https://tbroyer.github.io/gwt-maven-plugin/codeserver.html#Standalone_applications

On Sunday, October 18, 2020 at 5:03:21 PM UTC+2, Elhanan wrote:
>
> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me to 
> do it) and i'm in the process of doing so, the thing is there's no "Server 
> part" it's meant to operate as a page under cockpit ui 
>
> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com  
> wrote:
>
>> Hmm it is not good to have "server" part and "client" part (web browser, 
>> GWT) in one Maven module... The best practice is always to separate them.
>>
>> I wrote some simple explanation in this project: 
>> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules, 
>> check the explanation over there...
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>>
>>> i don't know, right now i'm having trouble to even compile everything, i 
>>> mean, i can either compile all the static files  (html WEB-INF) into a war, 
>>> OR i can compile the gwt sources, depending on what i place in pom.xml 
>>> (gwt-app or war) i was trying to have it all in one module
>>>
>>> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com  
>>> wrote:
>>>
 Is it not possible to add those contents into an artifact with assembly 
 for example? So that you can use it later for the dependency? I'm doing 
 this in this example:
 https://github.com/gwtboot/domino-rest-enum-date

 Hope this helps.
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:

> hi..
> i have a submodule of a gwt project that it's artifact are meant to be 
> included as part of the main artifact (which is a pom containing a debian 
> installer) 
> usually i would use copy-depdencies plugin to copy the jars into the 
> main artifact, but in this case there's no jar, is there a way i can copy 
> the output directory of that submodule into the main artifact? 
>
 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "GWT Users" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-web-tool...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
  
 
 .

>>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/d5a08b0a-33d0-4973-864c-eada9c7481e5o%40googlegroups.com.


Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Elhanan Maayan
I also understand that tbroyer is against doing maven install in general,
which is what i intend to do as it's part of the whole build process,  all
i need is for the the entire output be recognized as an artifact to be
carried to he main build , the solution your provider with the assembly
seems to so if, so i won't even need the server side, and just have that
pom copy instructions executed on the build module
Although in the future i may have a server side just to be able to execute
shell commands

On Mon, Oct 19, 2020, 11:44 Dr. Lofi Dewanto  wrote:

> Hmm ok... Never take a look at that...
>
> Elhanan Maayan  schrieb am Mo., 19. Okt. 2020,
> 10:00:
>
>> no i meant, that when i do regular compile i still see *.devmode.* files
>> on the target dir, and when i try to use just a normal server, it says it
>> can't see the codeserver.
>>
>> On Mon, Oct 19, 2020 at 1:30 AM Dr. Lofi Dewanto 
>> wrote:
>>
>>> Hmmm do you mean, maven-gwt-plugin compiles / transpiles everything
>>> first before it starts with gwt:devmode? ... Actually it doesn't need to, I
>>> agree... maybe @tbroyer could explain?
>>>
>>> Elhanan Maayan  schrieb am So., 18. Okt. 2020,
>>> 23:58:
>>>
 thanks, btw i don't understand why the maven plugin insists on
 compiling it for devmode

 On Mon, Oct 19, 2020 at 12:44 AM lofid...@gmail.com <
 lofidewa...@gmail.com> wrote:

> Yes, the main thing you have a fast turn around time for *compile -
> test cycle* for UI development. Because if you are working on UI you
> don‘t care about the business logic on the server. You just need some 
> *data
> examples* which you can mock easily with your DTO...
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 23:35:23 UTC+2:
>
>> essentially i could use all the real static files in the client side
>>
>> On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Yes and you can control it using Maven assembly as I showed above
>>>
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml
>>>
>>> You can add the CSS files to be added to the server module on
>>> deployment...
>>>
>>> But again, of course you can use gwt:codeserver instead of
>>> standalone gwt:devmode
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:
>>>
 yes, but in addition to the html file your also have the css files
 as well..

 On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> Yes correct, HTML file is your host file.
>
> I always put a simple HTML file to be able to launch / debug gwt
> webapp on the client... see:
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>
> But you don't have to use the same HTML file for client and
> server. On the server side I also have a HTML file:
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>  which
> is a bit different.
>
> The main artifact from "client" is the JS file which you can
> insert everywhere in a HTML file (server, etc.)
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>
>> i missing something basic here with all the code server/dev
>> mode/super dev mode/launch dir/workdir/startup url/s
>> at the end of the day you have to have an html file to use, when
>> you launch for debug, but the gwt plugins are in the client module 
>> which
>> doesn't have the html file on one hand, but they compile and write 
>> to the
>> server module on other hand.
>>
>> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Yes, but that's not a problem... in my example above I took out
>>> the html file (
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>>> so that I only packaged the JS files... and at the end I use the 
>>> HTML files
>>> from the server part.
>>>
>>> IMHO it is always good to be able to implement the "client"
>>> without the server part. I always mock the whole "server part"...
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>>
 but the webui-server contains all the static resources like the
 html page

 On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> --webui

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Dr. Lofi Dewanto
Hmm ok... Never take a look at that...

Elhanan Maayan  schrieb am Mo., 19. Okt. 2020, 10:00:

> no i meant, that when i do regular compile i still see *.devmode.* files
> on the target dir, and when i try to use just a normal server, it says it
> can't see the codeserver.
>
> On Mon, Oct 19, 2020 at 1:30 AM Dr. Lofi Dewanto 
> wrote:
>
>> Hmmm do you mean, maven-gwt-plugin compiles / transpiles everything first
>> before it starts with gwt:devmode? ... Actually it doesn't need to, I
>> agree... maybe @tbroyer could explain?
>>
>> Elhanan Maayan  schrieb am So., 18. Okt. 2020,
>> 23:58:
>>
>>> thanks, btw i don't understand why the maven plugin insists on compiling
>>> it for devmode
>>>
>>> On Mon, Oct 19, 2020 at 12:44 AM lofid...@gmail.com <
>>> lofidewa...@gmail.com> wrote:
>>>
 Yes, the main thing you have a fast turn around time for *compile -
 test cycle* for UI development. Because if you are working on UI you
 don‘t care about the business logic on the server. You just need some *data
 examples* which you can mock easily with your DTO...

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 23:35:23 UTC+2:

> essentially i could use all the real static files in the client side
>
> On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> Yes and you can control it using Maven assembly as I showed above
>>
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml
>>
>> You can add the CSS files to be added to the server module on
>> deployment...
>>
>> But again, of course you can use gwt:codeserver instead of standalone
>> gwt:devmode
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:
>>
>>> yes, but in addition to the html file your also have the css files
>>> as well..
>>>
>>> On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 Yes correct, HTML file is your host file.

 I always put a simple HTML file to be able to launch / debug gwt
 webapp on the client... see:
 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html

 But you don't have to use the same HTML file for client and server.
 On the server side I also have a HTML file:
 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
  which
 is a bit different.

 The main artifact from "client" is the JS file which you can insert
 everywhere in a HTML file (server, etc.)

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:

> i missing something basic here with all the code server/dev
> mode/super dev mode/launch dir/workdir/startup url/s
> at the end of the day you have to have an html file to use, when
> you launch for debug, but the gwt plugins are in the client module 
> which
> doesn't have the html file on one hand, but they compile and write to 
> the
> server module on other hand.
>
> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> Yes, but that's not a problem... in my example above I took out
>> the html file (
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>> so that I only packaged the JS files... and at the end I use the 
>> HTML files
>> from the server part.
>>
>> IMHO it is always good to be able to implement the "client"
>> without the server part. I always mock the whole "server part"...
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>
>>> but the webui-server contains all the static resources like the
>>> html page
>>>
>>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 --webui
 webui-client ---> this is the GWT code
 webui-server ---> this is server-side code like Servlet,
 Spring Boot, JavaEE servers

 This is the standard layout for maven-gwt-plugin so would be no
 problem at all... and for the mod1 / mod2: as long as you do: 
 install, the
 webui-client (gwt codeserver) will recognize the "source code" and 
 could
 also transpile the code on the fly... (at least the last time I 
 check it
 out)...

 If you want to completely separate everything you could go for:

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Elhanan Maayan
no i meant, that when i do regular compile i still see *.devmode.* files on
the target dir, and when i try to use just a normal server, it says it
can't see the codeserver.

On Mon, Oct 19, 2020 at 1:30 AM Dr. Lofi Dewanto 
wrote:

> Hmmm do you mean, maven-gwt-plugin compiles / transpiles everything first
> before it starts with gwt:devmode? ... Actually it doesn't need to, I
> agree... maybe @tbroyer could explain?
>
> Elhanan Maayan  schrieb am So., 18. Okt. 2020,
> 23:58:
>
>> thanks, btw i don't understand why the maven plugin insists on compiling
>> it for devmode
>>
>> On Mon, Oct 19, 2020 at 12:44 AM lofid...@gmail.com <
>> lofidewa...@gmail.com> wrote:
>>
>>> Yes, the main thing you have a fast turn around time for *compile -
>>> test cycle* for UI development. Because if you are working on UI you
>>> don‘t care about the business logic on the server. You just need some *data
>>> examples* which you can mock easily with your DTO...
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 23:35:23 UTC+2:
>>>
 essentially i could use all the real static files in the client side

 On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com 
 wrote:

> Yes and you can control it using Maven assembly as I showed above
>
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml
>
> You can add the CSS files to be added to the server module on
> deployment...
>
> But again, of course you can use gwt:codeserver instead of standalone
> gwt:devmode
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:
>
>> yes, but in addition to the html file your also have the css files as
>> well..
>>
>> On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Yes correct, HTML file is your host file.
>>>
>>> I always put a simple HTML file to be able to launch / debug gwt
>>> webapp on the client... see:
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>>>
>>> But you don't have to use the same HTML file for client and server.
>>> On the server side I also have a HTML file:
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>>>  which
>>> is a bit different.
>>>
>>> The main artifact from "client" is the JS file which you can insert
>>> everywhere in a HTML file (server, etc.)
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>>>
 i missing something basic here with all the code server/dev
 mode/super dev mode/launch dir/workdir/startup url/s
 at the end of the day you have to have an html file to use, when
 you launch for debug, but the gwt plugins are in the client module 
 which
 doesn't have the html file on one hand, but they compile and write to 
 the
 server module on other hand.

 On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> Yes, but that's not a problem... in my example above I took out
> the html file (
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
> so that I only packaged the JS files... and at the end I use the HTML 
> files
> from the server part.
>
> IMHO it is always good to be able to implement the "client"
> without the server part. I always mock the whole "server part"...
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>
>> but the webui-server contains all the static resources like the
>> html page
>>
>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> --webui
>>> webui-client ---> this is the GWT code
>>> webui-server ---> this is server-side code like Servlet,
>>> Spring Boot, JavaEE servers
>>>
>>> This is the standard layout for maven-gwt-plugin so would be no
>>> problem at all... and for the mod1 / mod2: as long as you do: 
>>> install, the
>>> webui-client (gwt codeserver) will recognize the "source code" and 
>>> could
>>> also transpile the code on the fly... (at least the last time I 
>>> check it
>>> out)...
>>>
>>> If you want to completely separate everything you could go for:
>>>
>>> --modules
>>> mod1
>>> mod2
>>>
>>> --webui
>>> webui-client
>>> webui-server
>>>
>>> --builder-modules
>>>
>>> Elhanan 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Dr. Lofi Dewanto
Hmmm do you mean, maven-gwt-plugin compiles / transpiles everything first
before it starts with gwt:devmode? ... Actually it doesn't need to, I
agree... maybe @tbroyer could explain?

Elhanan Maayan  schrieb am So., 18. Okt. 2020, 23:58:

> thanks, btw i don't understand why the maven plugin insists on compiling
> it for devmode
>
> On Mon, Oct 19, 2020 at 12:44 AM lofid...@gmail.com 
> wrote:
>
>> Yes, the main thing you have a fast turn around time for *compile - test
>> cycle* for UI development. Because if you are working on UI you don‘t
>> care about the business logic on the server. You just need some *data
>> examples* which you can mock easily with your DTO...
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 23:35:23 UTC+2:
>>
>>> essentially i could use all the real static files in the client side
>>>
>>> On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com 
>>> wrote:
>>>
 Yes and you can control it using Maven assembly as I showed above

 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml

 You can add the CSS files to be added to the server module on
 deployment...

 But again, of course you can use gwt:codeserver instead of standalone
 gwt:devmode
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:

> yes, but in addition to the html file your also have the css files as
> well..
>
> On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> Yes correct, HTML file is your host file.
>>
>> I always put a simple HTML file to be able to launch / debug gwt
>> webapp on the client... see:
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>>
>> But you don't have to use the same HTML file for client and server.
>> On the server side I also have a HTML file:
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>>  which
>> is a bit different.
>>
>> The main artifact from "client" is the JS file which you can insert
>> everywhere in a HTML file (server, etc.)
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>>
>>> i missing something basic here with all the code server/dev
>>> mode/super dev mode/launch dir/workdir/startup url/s
>>> at the end of the day you have to have an html file to use, when you
>>> launch for debug, but the gwt plugins are in the client module which
>>> doesn't have the html file on one hand, but they compile and write to 
>>> the
>>> server module on other hand.
>>>
>>> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 Yes, but that's not a problem... in my example above I took out the
 html file (
 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
 so that I only packaged the JS files... and at the end I use the HTML 
 files
 from the server part.

 IMHO it is always good to be able to implement the "client" without
 the server part. I always mock the whole "server part"...

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:

> but the webui-server contains all the static resources like the
> html page
>
> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> --webui
>> webui-client ---> this is the GWT code
>> webui-server ---> this is server-side code like Servlet,
>> Spring Boot, JavaEE servers
>>
>> This is the standard layout for maven-gwt-plugin so would be no
>> problem at all... and for the mod1 / mod2: as long as you do: 
>> install, the
>> webui-client (gwt codeserver) will recognize the "source code" and 
>> could
>> also transpile the code on the fly... (at least the last time I 
>> check it
>> out)...
>>
>> If you want to completely separate everything you could go for:
>>
>> --modules
>> mod1
>> mod2
>>
>> --webui
>> webui-client
>> webui-server
>>
>> --builder-modules
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>>
>>> i did just that only it's more like
>>> main_pom
>>> --mod1
>>> --mod2
>>> --webui
>>> webui-client
>>> webui-server
>>> --builder-mod that collects all jars from other modes into a
>>> directory for final deploy and installation

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
thanks, btw i don't understand why the maven plugin insists on compiling it
for devmode

On Mon, Oct 19, 2020 at 12:44 AM lofid...@gmail.com 
wrote:

> Yes, the main thing you have a fast turn around time for *compile - test
> cycle* for UI development. Because if you are working on UI you don‘t
> care about the business logic on the server. You just need some *data
> examples* which you can mock easily with your DTO...
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 23:35:23 UTC+2:
>
>> essentially i could use all the real static files in the client side
>>
>> On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com 
>> wrote:
>>
>>> Yes and you can control it using Maven assembly as I showed above
>>>
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml
>>>
>>> You can add the CSS files to be added to the server module on
>>> deployment...
>>>
>>> But again, of course you can use gwt:codeserver instead of standalone
>>> gwt:devmode
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:
>>>
 yes, but in addition to the html file your also have the css files as
 well..

 On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com 
 wrote:

> Yes correct, HTML file is your host file.
>
> I always put a simple HTML file to be able to launch / debug gwt
> webapp on the client... see:
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>
> But you don't have to use the same HTML file for client and server. On
> the server side I also have a HTML file:
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>  which
> is a bit different.
>
> The main artifact from "client" is the JS file which you can insert
> everywhere in a HTML file (server, etc.)
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>
>> i missing something basic here with all the code server/dev
>> mode/super dev mode/launch dir/workdir/startup url/s
>> at the end of the day you have to have an html file to use, when you
>> launch for debug, but the gwt plugins are in the client module which
>> doesn't have the html file on one hand, but they compile and write to the
>> server module on other hand.
>>
>> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Yes, but that's not a problem... in my example above I took out the
>>> html file (
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>>> so that I only packaged the JS files... and at the end I use the HTML 
>>> files
>>> from the server part.
>>>
>>> IMHO it is always good to be able to implement the "client" without
>>> the server part. I always mock the whole "server part"...
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>>
 but the webui-server contains all the static resources like the
 html page

 On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> --webui
> webui-client ---> this is the GWT code
> webui-server ---> this is server-side code like Servlet,
> Spring Boot, JavaEE servers
>
> This is the standard layout for maven-gwt-plugin so would be no
> problem at all... and for the mod1 / mod2: as long as you do: 
> install, the
> webui-client (gwt codeserver) will recognize the "source code" and 
> could
> also transpile the code on the fly... (at least the last time I check 
> it
> out)...
>
> If you want to completely separate everything you could go for:
>
> --modules
> mod1
> mod2
>
> --webui
> webui-client
> webui-server
>
> --builder-modules
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>
>> i did just that only it's more like
>> main_pom
>> --mod1
>> --mod2
>> --webui
>> webui-client
>> webui-server
>> --builder-mod that collects all jars from other modes into a
>> directory for final deploy and installation
>>
>> what i wanna do is also be able to build only the webui project,
>> and possibility to use the codeserver option which i don't think i 
>> can now
>> because they are all split in 3 modules
>>
>> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> I cannot follow you, 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
Yes, the main thing you have a fast turn around time for *compile - test 
cycle* for UI development. Because if you are working on UI you don‘t care 
about the business logic on the server. You just need some *data examples* 
which you can mock easily with your DTO...

Elhanan schrieb am Sonntag, 18. Oktober 2020 um 23:35:23 UTC+2:

> essentially i could use all the real static files in the client side 
>
> On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com  
> wrote:
>
>> Yes and you can control it using Maven assembly as I showed above
>>
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml
>>
>> You can add the CSS files to be added to the server module on 
>> deployment...
>>
>> But again, of course you can use gwt:codeserver instead of standalone 
>> gwt:devmode 
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:
>>
>>> yes, but in addition to the html file your also have the css files as 
>>> well.. 
>>>
>>> On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com  
>>> wrote:
>>>
 Yes correct, HTML file is your host file.

 I always put a simple HTML file to be able to launch / debug gwt webapp 
 on the client... see: 
 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html

 But you don't have to use the same HTML file for client and server. On 
 the server side I also have a HTML file: 
 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
  which 
 is a bit different.

 The main artifact from "client" is the JS file which you can insert 
 everywhere in a HTML file (server, etc.)

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:

> i missing something basic here with all the code server/dev mode/super 
> dev mode/launch dir/workdir/startup url/s 
> at the end of the day you have to have an html file to use, when you 
> launch for debug, but the gwt plugins are in the client module which 
> doesn't have the html file on one hand, but they compile and write to the 
> server module on other hand. 
>
> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com  
> wrote:
>
>> Yes, but that's not a problem... in my example above I took out the 
>> html file (
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>>  
>> so that I only packaged the JS files... and at the end I use the HTML 
>> files 
>> from the server part.
>>
>> IMHO it is always good to be able to implement the "client" without 
>> the server part. I always mock the whole "server part"...
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>
>>> but the webui-server contains all the static resources like the html 
>>> page 
>>>
>>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 --webui
 webui-client ---> this is the GWT code
 webui-server ---> this is server-side code like Servlet, Spring 
 Boot, JavaEE servers

 This is the standard layout for maven-gwt-plugin so would be no 
 problem at all... and for the mod1 / mod2: as long as you do: install, 
 the 
 webui-client (gwt codeserver) will recognize the "source code" and 
 could 
 also transpile the code on the fly... (at least the last time I check 
 it 
 out)...

 If you want to completely separate everything you could go for:

 --modules
 mod1
 mod2

 --webui
 webui-client
 webui-server 

 --builder-modules

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:

> i did just that only it's more like 
> main_pom
> --mod1
> --mod2
> --webui
> webui-client
> webui-server 
> --builder-mod that collects all jars from other modes into a 
> directory for final deploy and installation 
>
> what i wanna do is also be able to build only the webui project, 
> and possibility to use the codeserver option which i don't think i 
> can now 
> because they are all split in 3 modules
>
> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> I cannot follow you, maybe you could write something like:
>>
>> cockpit
>> -- cockpit-client-ui
>> -- cockpit-server
>> ...
>>
>> I'm not sure how the structure of your projects looks like?
>> Elhanan 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
essentially i could use all the real static files in the client side

On Mon, Oct 19, 2020 at 12:30 AM lofid...@gmail.com 
wrote:

> Yes and you can control it using Maven assembly as I showed above
>
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml
>
> You can add the CSS files to be added to the server module on deployment...
>
> But again, of course you can use gwt:codeserver instead of standalone
> gwt:devmode
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:
>
>> yes, but in addition to the html file your also have the css files as
>> well..
>>
>> On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com 
>> wrote:
>>
>>> Yes correct, HTML file is your host file.
>>>
>>> I always put a simple HTML file to be able to launch / debug gwt webapp
>>> on the client... see:
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>>>
>>> But you don't have to use the same HTML file for client and server. On
>>> the server side I also have a HTML file:
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>>>  which
>>> is a bit different.
>>>
>>> The main artifact from "client" is the JS file which you can insert
>>> everywhere in a HTML file (server, etc.)
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>>>
 i missing something basic here with all the code server/dev mode/super
 dev mode/launch dir/workdir/startup url/s
 at the end of the day you have to have an html file to use, when you
 launch for debug, but the gwt plugins are in the client module which
 doesn't have the html file on one hand, but they compile and write to the
 server module on other hand.

 On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com 
 wrote:

> Yes, but that's not a problem... in my example above I took out the
> html file (
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
> so that I only packaged the JS files... and at the end I use the HTML 
> files
> from the server part.
>
> IMHO it is always good to be able to implement the "client" without
> the server part. I always mock the whole "server part"...
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>
>> but the webui-server contains all the static resources like the html
>> page
>>
>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> --webui
>>> webui-client ---> this is the GWT code
>>> webui-server ---> this is server-side code like Servlet, Spring
>>> Boot, JavaEE servers
>>>
>>> This is the standard layout for maven-gwt-plugin so would be no
>>> problem at all... and for the mod1 / mod2: as long as you do: install, 
>>> the
>>> webui-client (gwt codeserver) will recognize the "source code" and could
>>> also transpile the code on the fly... (at least the last time I check it
>>> out)...
>>>
>>> If you want to completely separate everything you could go for:
>>>
>>> --modules
>>> mod1
>>> mod2
>>>
>>> --webui
>>> webui-client
>>> webui-server
>>>
>>> --builder-modules
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>>>
 i did just that only it's more like
 main_pom
 --mod1
 --mod2
 --webui
 webui-client
 webui-server
 --builder-mod that collects all jars from other modes into a
 directory for final deploy and installation

 what i wanna do is also be able to build only the webui project,
 and possibility to use the codeserver option which i don't think i can 
 now
 because they are all split in 3 modules

 On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> I cannot follow you, maybe you could write something like:
>
> cockpit
> -- cockpit-client-ui
> -- cockpit-server
> ...
>
> I'm not sure how the structure of your projects looks like?
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>
>> i'm assuming those 2 need to be in there own aggregator pom (i.e
>> my main parent pom will a web ui pom, which will have those 
>> submodules) ,
>> because i want to be able to build just that webproject alone 
>> without the
>> need to build the whole project again (this is because that in order 
>> to
>> develop for cockpit i can't use any of the rapid inplace server
>> development, 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
Yes and you can control it using Maven assembly as I showed above
https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml

You can add the CSS files to be added to the server module on deployment...

But again, of course you can use gwt:codeserver instead of standalone 
gwt:devmode 
Elhanan schrieb am Sonntag, 18. Oktober 2020 um 22:53:31 UTC+2:

> yes, but in addition to the html file your also have the css files as 
> well.. 
>
> On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com  
> wrote:
>
>> Yes correct, HTML file is your host file.
>>
>> I always put a simple HTML file to be able to launch / debug gwt webapp 
>> on the client... see: 
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>>
>> But you don't have to use the same HTML file for client and server. On 
>> the server side I also have a HTML file: 
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>>  which 
>> is a bit different.
>>
>> The main artifact from "client" is the JS file which you can insert 
>> everywhere in a HTML file (server, etc.)
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>>
>>> i missing something basic here with all the code server/dev mode/super 
>>> dev mode/launch dir/workdir/startup url/s 
>>> at the end of the day you have to have an html file to use, when you 
>>> launch for debug, but the gwt plugins are in the client module which 
>>> doesn't have the html file on one hand, but they compile and write to the 
>>> server module on other hand. 
>>>
>>> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com  
>>> wrote:
>>>
 Yes, but that's not a problem... in my example above I took out the 
 html file (
 https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
  
 so that I only packaged the JS files... and at the end I use the HTML 
 files 
 from the server part.

 IMHO it is always good to be able to implement the "client" without the 
 server part. I always mock the whole "server part"...

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:

> but the webui-server contains all the static resources like the html 
> page 
>
> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com  
> wrote:
>
>> --webui
>> webui-client ---> this is the GWT code
>> webui-server ---> this is server-side code like Servlet, Spring 
>> Boot, JavaEE servers
>>
>> This is the standard layout for maven-gwt-plugin so would be no 
>> problem at all... and for the mod1 / mod2: as long as you do: install, 
>> the 
>> webui-client (gwt codeserver) will recognize the "source code" and could 
>> also transpile the code on the fly... (at least the last time I check it 
>> out)...
>>
>> If you want to completely separate everything you could go for:
>>
>> --modules
>> mod1
>> mod2
>>
>> --webui
>> webui-client
>> webui-server 
>>
>> --builder-modules
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>>
>>> i did just that only it's more like 
>>> main_pom
>>> --mod1
>>> --mod2
>>> --webui
>>> webui-client
>>> webui-server 
>>> --builder-mod that collects all jars from other modes into a 
>>> directory for final deploy and installation 
>>>
>>> what i wanna do is also be able to build only the webui project, and 
>>> possibility to use the codeserver option which i don't think i can now 
>>> because they are all split in 3 modules
>>>
>>> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 I cannot follow you, maybe you could write something like:

 cockpit
 -- cockpit-client-ui
 -- cockpit-server
 ...

 I'm not sure how the structure of your projects looks like?
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:

> i'm assuming those 2 need to be in there own aggregator pom (i.e 
> my main parent pom will a web ui pom, which will have those 
> submodules) , 
> because i want to be able to build just that webproject alone without 
> the 
> need to build the whole project again (this is because that in order 
> to 
> develop for cockpit i can't use any of the rapid inplace server 
> development, but compile the while thing and copy the distro to a 
> linux server running the cockpit server)
>
> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> In my 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
yes, but in addition to the html file your also have the css files as
well..

On Sun, Oct 18, 2020 at 10:54 PM lofid...@gmail.com 
wrote:

> Yes correct, HTML file is your host file.
>
> I always put a simple HTML file to be able to launch / debug gwt webapp on
> the client... see:
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html
>
> But you don't have to use the same HTML file for client and server. On the
> server side I also have a HTML file:
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
>  which
> is a bit different.
>
> The main artifact from "client" is the JS file which you can insert
> everywhere in a HTML file (server, etc.)
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:
>
>> i missing something basic here with all the code server/dev mode/super
>> dev mode/launch dir/workdir/startup url/s
>> at the end of the day you have to have an html file to use, when you
>> launch for debug, but the gwt plugins are in the client module which
>> doesn't have the html file on one hand, but they compile and write to the
>> server module on other hand.
>>
>> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com 
>> wrote:
>>
>>> Yes, but that's not a problem... in my example above I took out the html
>>> file (
>>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>>> so that I only packaged the JS files... and at the end I use the HTML files
>>> from the server part.
>>>
>>> IMHO it is always good to be able to implement the "client" without the
>>> server part. I always mock the whole "server part"...
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>>
 but the webui-server contains all the static resources like the html
 page

 On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com 
 wrote:

> --webui
> webui-client ---> this is the GWT code
> webui-server ---> this is server-side code like Servlet, Spring
> Boot, JavaEE servers
>
> This is the standard layout for maven-gwt-plugin so would be no
> problem at all... and for the mod1 / mod2: as long as you do: install, the
> webui-client (gwt codeserver) will recognize the "source code" and could
> also transpile the code on the fly... (at least the last time I check it
> out)...
>
> If you want to completely separate everything you could go for:
>
> --modules
> mod1
> mod2
>
> --webui
> webui-client
> webui-server
>
> --builder-modules
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>
>> i did just that only it's more like
>> main_pom
>> --mod1
>> --mod2
>> --webui
>> webui-client
>> webui-server
>> --builder-mod that collects all jars from other modes into a
>> directory for final deploy and installation
>>
>> what i wanna do is also be able to build only the webui project, and
>> possibility to use the codeserver option which i don't think i can now
>> because they are all split in 3 modules
>>
>> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> I cannot follow you, maybe you could write something like:
>>>
>>> cockpit
>>> -- cockpit-client-ui
>>> -- cockpit-server
>>> ...
>>>
>>> I'm not sure how the structure of your projects looks like?
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>>>
 i'm assuming those 2 need to be in there own aggregator pom (i.e my
 main parent pom will a web ui pom, which will have those submodules) ,
 because i want to be able to build just that webproject alone without 
 the
 need to build the whole project again (this is because that in order to
 develop for cockpit i can't use any of the rapid inplace server
 development, but compile the while thing and copy the distro to a
 linux server running the cockpit server)

 On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> In my example I only use the gwt-maven-plugin for the "client"
> part (GWT part). On the server part I use "pure" Spring Boot approach,
> therefore I copied all the JS stuffs from the "client" part with the 
> help
> of maven-dependencies-plugin. I'm not using war deployment on Spring 
> Boot...
>
> For me the main concept: From GWT project you get just JS file(s)
> and you can copy it somewhere else where you have a web server. I also
> already use "only" the JS file(s) and copy the automatically to NGinX
> without server part.
>

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
additionally ... in the case using the structure of gwt-maven-plugin also 
correct.

There are two possibilities using *gwt:codeserver* (the case you said) or 
*gwt:devmode* (my example) see the difference: 
https://tbroyer.github.io/gwt-maven-plugin/codeserver.html

Both possible, I just prefer the second one ("standalone") because I try 
not to mix both world... Spring Boot stays like Spring Boot and the 
development of UI (client) should always be standalone and all the server 
parts should be mocked...
Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:

> i missing something basic here with all the code server/dev mode/super dev 
> mode/launch dir/workdir/startup url/s 
> at the end of the day you have to have an html file to use, when you 
> launch for debug, but the gwt plugins are in the client module which 
> doesn't have the html file on one hand, but they compile and write to the 
> server module on other hand. 
>
> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com  
> wrote:
>
>> Yes, but that's not a problem... in my example above I took out the html 
>> file (
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>>  
>> so that I only packaged the JS files... and at the end I use the HTML files 
>> from the server part.
>>
>> IMHO it is always good to be able to implement the "client" without the 
>> server part. I always mock the whole "server part"...
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>
>>> but the webui-server contains all the static resources like the html 
>>> page 
>>>
>>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com  
>>> wrote:
>>>
 --webui
 webui-client ---> this is the GWT code
 webui-server ---> this is server-side code like Servlet, Spring 
 Boot, JavaEE servers

 This is the standard layout for maven-gwt-plugin so would be no problem 
 at all... and for the mod1 / mod2: as long as you do: install, the 
 webui-client (gwt codeserver) will recognize the "source code" and could 
 also transpile the code on the fly... (at least the last time I check it 
 out)...

 If you want to completely separate everything you could go for:

 --modules
 mod1
 mod2

 --webui
 webui-client
 webui-server 

 --builder-modules

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:

> i did just that only it's more like 
> main_pom
> --mod1
> --mod2
> --webui
> webui-client
> webui-server 
> --builder-mod that collects all jars from other modes into a directory 
> for final deploy and installation 
>
> what i wanna do is also be able to build only the webui project, and 
> possibility to use the codeserver option which i don't think i can now 
> because they are all split in 3 modules
>
> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com  
> wrote:
>
>> I cannot follow you, maybe you could write something like:
>>
>> cockpit
>> -- cockpit-client-ui
>> -- cockpit-server
>> ...
>>
>> I'm not sure how the structure of your projects looks like?
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>>
>>> i'm assuming those 2 need to be in there own aggregator pom (i.e my 
>>> main parent pom will a web ui pom, which will have those submodules) , 
>>> because i want to be able to build just that webproject alone without 
>>> the 
>>> need to build the whole project again (this is because that in order to 
>>> develop for cockpit i can't use any of the rapid inplace server 
>>> development, but compile the while thing and copy the distro to a 
>>> linux server running the cockpit server)
>>>
>>> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 In my example I only use the gwt-maven-plugin for the "client" part 
 (GWT part). On the server part I use "pure" Spring Boot approach, 
 therefore 
 I copied all the JS stuffs from the "client" part with the help of 
 maven-dependencies-plugin. I'm not using war deployment on Spring 
 Boot...

 For me the main concept: From GWT project you get just JS file(s) 
 and you can copy it somewhere else where you have a web server. I also 
 already use "only" the JS file(s) and copy the automatically to NGinX 
 without server part.

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:

> yes, i understand that gwt-maven-plugin is "opinionated" (i.e 
> forces me to do it) and i'm in the process of doing so, the thing is 
> there's no "Server part" it's meant to operate as a page under 
> cockpit ui 
>
> On Sun, Oct 18, 2020 at 6:00 PM 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
Yes correct, HTML file is your host file.

I always put a simple HTML file to be able to launch / debug gwt webapp on 
the client... see: 
https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/main/java/com/example/public/index.html

But you don't have to use the same HTML file for client and server. On the 
server side I also have a HTML file: 
https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-server/src/main/resources/static/index.html
 which 
is a bit different.

The main artifact from "client" is the JS file which you can insert 
everywhere in a HTML file (server, etc.)

Elhanan schrieb am Sonntag, 18. Oktober 2020 um 21:32:27 UTC+2:

> i missing something basic here with all the code server/dev mode/super dev 
> mode/launch dir/workdir/startup url/s 
> at the end of the day you have to have an html file to use, when you 
> launch for debug, but the gwt plugins are in the client module which 
> doesn't have the html file on one hand, but they compile and write to the 
> server module on other hand. 
>
> On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com  
> wrote:
>
>> Yes, but that's not a problem... in my example above I took out the html 
>> file (
>> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
>>  
>> so that I only packaged the JS files... and at the end I use the HTML files 
>> from the server part.
>>
>> IMHO it is always good to be able to implement the "client" without the 
>> server part. I always mock the whole "server part"...
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>>
>>> but the webui-server contains all the static resources like the html 
>>> page 
>>>
>>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com  
>>> wrote:
>>>
 --webui
 webui-client ---> this is the GWT code
 webui-server ---> this is server-side code like Servlet, Spring 
 Boot, JavaEE servers

 This is the standard layout for maven-gwt-plugin so would be no problem 
 at all... and for the mod1 / mod2: as long as you do: install, the 
 webui-client (gwt codeserver) will recognize the "source code" and could 
 also transpile the code on the fly... (at least the last time I check it 
 out)...

 If you want to completely separate everything you could go for:

 --modules
 mod1
 mod2

 --webui
 webui-client
 webui-server 

 --builder-modules

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:

> i did just that only it's more like 
> main_pom
> --mod1
> --mod2
> --webui
> webui-client
> webui-server 
> --builder-mod that collects all jars from other modes into a directory 
> for final deploy and installation 
>
> what i wanna do is also be able to build only the webui project, and 
> possibility to use the codeserver option which i don't think i can now 
> because they are all split in 3 modules
>
> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com  
> wrote:
>
>> I cannot follow you, maybe you could write something like:
>>
>> cockpit
>> -- cockpit-client-ui
>> -- cockpit-server
>> ...
>>
>> I'm not sure how the structure of your projects looks like?
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>>
>>> i'm assuming those 2 need to be in there own aggregator pom (i.e my 
>>> main parent pom will a web ui pom, which will have those submodules) , 
>>> because i want to be able to build just that webproject alone without 
>>> the 
>>> need to build the whole project again (this is because that in order to 
>>> develop for cockpit i can't use any of the rapid inplace server 
>>> development, but compile the while thing and copy the distro to a 
>>> linux server running the cockpit server)
>>>
>>> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 In my example I only use the gwt-maven-plugin for the "client" part 
 (GWT part). On the server part I use "pure" Spring Boot approach, 
 therefore 
 I copied all the JS stuffs from the "client" part with the help of 
 maven-dependencies-plugin. I'm not using war deployment on Spring 
 Boot...

 For me the main concept: From GWT project you get just JS file(s) 
 and you can copy it somewhere else where you have a web server. I also 
 already use "only" the JS file(s) and copy the automatically to NGinX 
 without server part.

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:

> yes, i understand that gwt-maven-plugin is "opinionated" (i.e 
> forces me to do it) and i'm in the process of doing so, the thing is 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
i missing something basic here with all the code server/dev mode/super dev
mode/launch dir/workdir/startup url/s
at the end of the day you have to have an html file to use, when you launch
for debug, but the gwt plugins are in the client module which doesn't have
the html file on one hand, but they compile and write to the server module
on other hand.

On Sun, Oct 18, 2020 at 9:17 PM lofid...@gmail.com 
wrote:

> Yes, but that's not a problem... in my example above I took out the html
> file (
> https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
> so that I only packaged the JS files... and at the end I use the HTML files
> from the server part.
>
> IMHO it is always good to be able to implement the "client" without the
> server part. I always mock the whole "server part"...
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:
>
>> but the webui-server contains all the static resources like the html page
>>
>> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com 
>> wrote:
>>
>>> --webui
>>> webui-client ---> this is the GWT code
>>> webui-server ---> this is server-side code like Servlet, Spring
>>> Boot, JavaEE servers
>>>
>>> This is the standard layout for maven-gwt-plugin so would be no problem
>>> at all... and for the mod1 / mod2: as long as you do: install, the
>>> webui-client (gwt codeserver) will recognize the "source code" and could
>>> also transpile the code on the fly... (at least the last time I check it
>>> out)...
>>>
>>> If you want to completely separate everything you could go for:
>>>
>>> --modules
>>> mod1
>>> mod2
>>>
>>> --webui
>>> webui-client
>>> webui-server
>>>
>>> --builder-modules
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>>>
 i did just that only it's more like
 main_pom
 --mod1
 --mod2
 --webui
 webui-client
 webui-server
 --builder-mod that collects all jars from other modes into a directory
 for final deploy and installation

 what i wanna do is also be able to build only the webui project, and
 possibility to use the codeserver option which i don't think i can now
 because they are all split in 3 modules

 On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com 
 wrote:

> I cannot follow you, maybe you could write something like:
>
> cockpit
> -- cockpit-client-ui
> -- cockpit-server
> ...
>
> I'm not sure how the structure of your projects looks like?
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>
>> i'm assuming those 2 need to be in there own aggregator pom (i.e my
>> main parent pom will a web ui pom, which will have those submodules) ,
>> because i want to be able to build just that webproject alone without the
>> need to build the whole project again (this is because that in order to
>> develop for cockpit i can't use any of the rapid inplace server
>> development, but compile the while thing and copy the distro to a
>> linux server running the cockpit server)
>>
>> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> In my example I only use the gwt-maven-plugin for the "client" part
>>> (GWT part). On the server part I use "pure" Spring Boot approach, 
>>> therefore
>>> I copied all the JS stuffs from the "client" part with the help of
>>> maven-dependencies-plugin. I'm not using war deployment on Spring 
>>> Boot...
>>>
>>> For me the main concept: From GWT project you get just JS file(s)
>>> and you can copy it somewhere else where you have a web server. I also
>>> already use "only" the JS file(s) and copy the automatically to NGinX
>>> without server part.
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:
>>>
 yes, i understand that gwt-maven-plugin is "opinionated" (i.e
 forces me to do it) and i'm in the process of doing so, the thing is
 there's no "Server part" it's meant to operate as a page under cockpit 
 ui

 On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> Hmm it is not good to have "server" part and "client" part (web
> browser, GWT) in one Maven module... The best practice is always to
> separate them.
>
> I wrote some simple explanation in this project:
> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven
> modules, check the explanation over there...
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>
>> i don't know, right now i'm having trouble to even compile
>> everything, i mean, i can either compile all the static files  (html
>> WEB-INF) into a war, OR i can compile the gwt sources, depending on 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
Yes, but that's not a problem... in my example above I took out the html 
file (
https://github.com/gwtboot/domino-rest-enum-date/blob/master/domino-rest-enum-date-client/src/assembly/distribution.xml)
 
so that I only packaged the JS files... and at the end I use the HTML files 
from the server part.

IMHO it is always good to be able to implement the "client" without the 
server part. I always mock the whole "server part"...

Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:28:19 UTC+2:

> but the webui-server contains all the static resources like the html page 
>
> On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com  
> wrote:
>
>> --webui
>> webui-client ---> this is the GWT code
>> webui-server ---> this is server-side code like Servlet, Spring Boot, 
>> JavaEE servers
>>
>> This is the standard layout for maven-gwt-plugin so would be no problem 
>> at all... and for the mod1 / mod2: as long as you do: install, the 
>> webui-client (gwt codeserver) will recognize the "source code" and could 
>> also transpile the code on the fly... (at least the last time I check it 
>> out)...
>>
>> If you want to completely separate everything you could go for:
>>
>> --modules
>> mod1
>> mod2
>>
>> --webui
>> webui-client
>> webui-server 
>>
>> --builder-modules
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>>
>>> i did just that only it's more like 
>>> main_pom
>>> --mod1
>>> --mod2
>>> --webui
>>> webui-client
>>> webui-server 
>>> --builder-mod that collects all jars from other modes into a directory 
>>> for final deploy and installation 
>>>
>>> what i wanna do is also be able to build only the webui project, and 
>>> possibility to use the codeserver option which i don't think i can now 
>>> because they are all split in 3 modules
>>>
>>> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com  
>>> wrote:
>>>
 I cannot follow you, maybe you could write something like:

 cockpit
 -- cockpit-client-ui
 -- cockpit-server
 ...

 I'm not sure how the structure of your projects looks like?
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:

> i'm assuming those 2 need to be in there own aggregator pom (i.e my 
> main parent pom will a web ui pom, which will have those submodules) , 
> because i want to be able to build just that webproject alone without the 
> need to build the whole project again (this is because that in order to 
> develop for cockpit i can't use any of the rapid inplace server 
> development, but compile the while thing and copy the distro to a 
> linux server running the cockpit server)
>
> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com  
> wrote:
>
>> In my example I only use the gwt-maven-plugin for the "client" part 
>> (GWT part). On the server part I use "pure" Spring Boot approach, 
>> therefore 
>> I copied all the JS stuffs from the "client" part with the help of 
>> maven-dependencies-plugin. I'm not using war deployment on Spring Boot...
>>
>> For me the main concept: From GWT project you get just JS file(s) and 
>> you can copy it somewhere else where you have a web server. I also 
>> already 
>> use "only" the JS file(s) and copy the automatically to NGinX without 
>> server part.
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:
>>
>>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces 
>>> me to do it) and i'm in the process of doing so, the thing is there's 
>>> no 
>>> "Server part" it's meant to operate as a page under cockpit ui 
>>>
>>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 Hmm it is not good to have "server" part and "client" part (web 
 browser, GWT) in one Maven module... The best practice is always to 
 separate them.

 I wrote some simple explanation in this project: 
 https://github.com/gwtboot/domino-rest-enum-date with 3 Maven 
 modules, check the explanation over there...
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:

> i don't know, right now i'm having trouble to even compile 
> everything, i mean, i can either compile all the static files  (html 
> WEB-INF) into a war, OR i can compile the gwt sources, depending on 
> what i 
> place in pom.xml (gwt-app or war) i was trying to have it all in one 
> module
>
> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com <
> lofid...@gmail.com> wrote:
>
>> Is it not possible to add those contents into an artifact with 
>> assembly for example? So that you can use it later for the 
>> dependency? I'm 
>> doing this in this example:
>> https://github.com/gwtboot/domino-rest-enum-date

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
but the webui-server contains all the static resources like the html page

On Sun, Oct 18, 2020 at 8:24 PM lofid...@gmail.com 
wrote:

> --webui
> webui-client ---> this is the GWT code
> webui-server ---> this is server-side code like Servlet, Spring Boot,
> JavaEE servers
>
> This is the standard layout for maven-gwt-plugin so would be no problem at
> all... and for the mod1 / mod2: as long as you do: install, the
> webui-client (gwt codeserver) will recognize the "source code" and could
> also transpile the code on the fly... (at least the last time I check it
> out)...
>
> If you want to completely separate everything you could go for:
>
> --modules
> mod1
> mod2
>
> --webui
> webui-client
> webui-server
>
> --builder-modules
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:
>
>> i did just that only it's more like
>> main_pom
>> --mod1
>> --mod2
>> --webui
>> webui-client
>> webui-server
>> --builder-mod that collects all jars from other modes into a directory
>> for final deploy and installation
>>
>> what i wanna do is also be able to build only the webui project, and
>> possibility to use the codeserver option which i don't think i can now
>> because they are all split in 3 modules
>>
>> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com 
>> wrote:
>>
>>> I cannot follow you, maybe you could write something like:
>>>
>>> cockpit
>>> -- cockpit-client-ui
>>> -- cockpit-server
>>> ...
>>>
>>> I'm not sure how the structure of your projects looks like?
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>>>
 i'm assuming those 2 need to be in there own aggregator pom (i.e my
 main parent pom will a web ui pom, which will have those submodules) ,
 because i want to be able to build just that webproject alone without the
 need to build the whole project again (this is because that in order to
 develop for cockpit i can't use any of the rapid inplace server
 development, but compile the while thing and copy the distro to a
 linux server running the cockpit server)

 On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com 
 wrote:

> In my example I only use the gwt-maven-plugin for the "client" part
> (GWT part). On the server part I use "pure" Spring Boot approach, 
> therefore
> I copied all the JS stuffs from the "client" part with the help of
> maven-dependencies-plugin. I'm not using war deployment on Spring Boot...
>
> For me the main concept: From GWT project you get just JS file(s) and
> you can copy it somewhere else where you have a web server. I also already
> use "only" the JS file(s) and copy the automatically to NGinX without
> server part.
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:
>
>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces
>> me to do it) and i'm in the process of doing so, the thing is there's no
>> "Server part" it's meant to operate as a page under cockpit ui
>>
>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Hmm it is not good to have "server" part and "client" part (web
>>> browser, GWT) in one Maven module... The best practice is always to
>>> separate them.
>>>
>>> I wrote some simple explanation in this project:
>>> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven
>>> modules, check the explanation over there...
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>>>
 i don't know, right now i'm having trouble to even compile
 everything, i mean, i can either compile all the static files  (html
 WEB-INF) into a war, OR i can compile the gwt sources, depending on 
 what i
 place in pom.xml (gwt-app or war) i was trying to have it all in one 
 module

 On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com <
 lofid...@gmail.com> wrote:

> Is it not possible to add those contents into an artifact with
> assembly for example? So that you can use it later for the 
> dependency? I'm
> doing this in this example:
> https://github.com/gwtboot/domino-rest-enum-date
>
> Hope this helps.
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>
>> hi..
>> i have a submodule of a gwt project that it's artifact are meant
>> to be included as part of the main artifact (which is a pom 
>> containing a
>> debian installer)
>> usually i would use copy-depdencies plugin to copy the jars into
>> the main artifact, but in this case there's no jar, is there a way i 
>> can
>> copy the output directory of that submodule into the main artifact?
>>
> --
> You received this message because you are subscribed to 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
--webui
webui-client ---> this is the GWT code
webui-server ---> this is server-side code like Servlet, Spring Boot, 
JavaEE servers

This is the standard layout for maven-gwt-plugin so would be no problem at 
all... and for the mod1 / mod2: as long as you do: install, the 
webui-client (gwt codeserver) will recognize the "source code" and could 
also transpile the code on the fly... (at least the last time I check it 
out)...

If you want to completely separate everything you could go for:

--modules
mod1
mod2

--webui
webui-client
webui-server 

--builder-modules

Elhanan schrieb am Sonntag, 18. Oktober 2020 um 19:06:45 UTC+2:

> i did just that only it's more like 
> main_pom
> --mod1
> --mod2
> --webui
> webui-client
> webui-server 
> --builder-mod that collects all jars from other modes into a directory for 
> final deploy and installation 
>
> what i wanna do is also be able to build only the webui project, and 
> possibility to use the codeserver option which i don't think i can now 
> because they are all split in 3 modules
>
> On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com  
> wrote:
>
>> I cannot follow you, maybe you could write something like:
>>
>> cockpit
>> -- cockpit-client-ui
>> -- cockpit-server
>> ...
>>
>> I'm not sure how the structure of your projects looks like?
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>>
>>> i'm assuming those 2 need to be in there own aggregator pom (i.e my main 
>>> parent pom will a web ui pom, which will have those submodules) , because i 
>>> want to be able to build just that webproject alone without the need to 
>>> build the whole project again (this is because that in order to develop for 
>>> cockpit i can't use any of the rapid inplace server development, but 
>>> compile the while thing and copy the distro to a linux server running the 
>>> cockpit server)
>>>
>>> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com  
>>> wrote:
>>>
 In my example I only use the gwt-maven-plugin for the "client" part 
 (GWT part). On the server part I use "pure" Spring Boot approach, 
 therefore 
 I copied all the JS stuffs from the "client" part with the help of 
 maven-dependencies-plugin. I'm not using war deployment on Spring Boot...

 For me the main concept: From GWT project you get just JS file(s) and 
 you can copy it somewhere else where you have a web server. I also already 
 use "only" the JS file(s) and copy the automatically to NGinX without 
 server part.

 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:

> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces 
> me to do it) and i'm in the process of doing so, the thing is there's no 
> "Server part" it's meant to operate as a page under cockpit ui 
>
> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com  
> wrote:
>
>> Hmm it is not good to have "server" part and "client" part (web 
>> browser, GWT) in one Maven module... The best practice is always to 
>> separate them.
>>
>> I wrote some simple explanation in this project: 
>> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven 
>> modules, check the explanation over there...
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>>
>>> i don't know, right now i'm having trouble to even compile 
>>> everything, i mean, i can either compile all the static files  (html 
>>> WEB-INF) into a war, OR i can compile the gwt sources, depending on 
>>> what i 
>>> place in pom.xml (gwt-app or war) i was trying to have it all in one 
>>> module
>>>
>>> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com <
>>> lofid...@gmail.com> wrote:
>>>
 Is it not possible to add those contents into an artifact with 
 assembly for example? So that you can use it later for the dependency? 
 I'm 
 doing this in this example:
 https://github.com/gwtboot/domino-rest-enum-date

 Hope this helps.
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:

> hi..
> i have a submodule of a gwt project that it's artifact are meant 
> to be included as part of the main artifact (which is a pom 
> containing a 
> debian installer) 
> usually i would use copy-depdencies plugin to copy the jars into 
> the main artifact, but in this case there's no jar, is there a way i 
> can 
> copy the output directory of that submodule into the main artifact? 
>
 -- 
 You received this message because you are subscribed to a topic in 
 the Google Groups "GWT Users" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
 .
 To unsubscribe from this group and all 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
i did just that only it's more like
main_pom
--mod1
--mod2
--webui
webui-client
webui-server
--builder-mod that collects all jars from other modes into a directory for
final deploy and installation

what i wanna do is also be able to build only the webui project, and
possibility to use the codeserver option which i don't think i can now
because they are all split in 3 modules

On Sun, Oct 18, 2020 at 8:02 PM lofid...@gmail.com 
wrote:

> I cannot follow you, maybe you could write something like:
>
> cockpit
> -- cockpit-client-ui
> -- cockpit-server
> ...
>
> I'm not sure how the structure of your projects looks like?
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:
>
>> i'm assuming those 2 need to be in there own aggregator pom (i.e my main
>> parent pom will a web ui pom, which will have those submodules) , because i
>> want to be able to build just that webproject alone without the need to
>> build the whole project again (this is because that in order to develop for
>> cockpit i can't use any of the rapid inplace server development, but
>> compile the while thing and copy the distro to a linux server running the
>> cockpit server)
>>
>> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com 
>> wrote:
>>
>>> In my example I only use the gwt-maven-plugin for the "client" part (GWT
>>> part). On the server part I use "pure" Spring Boot approach, therefore I
>>> copied all the JS stuffs from the "client" part with the help of
>>> maven-dependencies-plugin. I'm not using war deployment on Spring Boot...
>>>
>>> For me the main concept: From GWT project you get just JS file(s) and
>>> you can copy it somewhere else where you have a web server. I also already
>>> use "only" the JS file(s) and copy the automatically to NGinX without
>>> server part.
>>>
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:
>>>
 yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me
 to do it) and i'm in the process of doing so, the thing is there's no
 "Server part" it's meant to operate as a page under cockpit ui

 On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com 
 wrote:

> Hmm it is not good to have "server" part and "client" part (web
> browser, GWT) in one Maven module... The best practice is always to
> separate them.
>
> I wrote some simple explanation in this project:
> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven
> modules, check the explanation over there...
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>
>> i don't know, right now i'm having trouble to even compile
>> everything, i mean, i can either compile all the static files  (html
>> WEB-INF) into a war, OR i can compile the gwt sources, depending on what 
>> i
>> place in pom.xml (gwt-app or war) i was trying to have it all in one 
>> module
>>
>> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com <
>> lofid...@gmail.com> wrote:
>>
>>> Is it not possible to add those contents into an artifact with
>>> assembly for example? So that you can use it later for the dependency? 
>>> I'm
>>> doing this in this example:
>>> https://github.com/gwtboot/domino-rest-enum-date
>>>
>>> Hope this helps.
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>>
 hi..
 i have a submodule of a gwt project that it's artifact are meant to
 be included as part of the main artifact (which is a pom containing a
 debian installer)
 usually i would use copy-depdencies plugin to copy the jars into
 the main artifact, but in this case there's no jar, is there a way i 
 can
 copy the output directory of that submodule into the main artifact?

>>> --
>>> You received this message because you are subscribed to a topic in
>>> the Google Groups "GWT Users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> google-web-tool...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-tool...@googlegroups.com.
>
 To view this discussion on the web 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
I cannot follow you, maybe you could write something like:

cockpit
-- cockpit-client-ui
-- cockpit-server
...

I'm not sure how the structure of your projects looks like?
Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:28:19 UTC+2:

> i'm assuming those 2 need to be in there own aggregator pom (i.e my main 
> parent pom will a web ui pom, which will have those submodules) , because i 
> want to be able to build just that webproject alone without the need to 
> build the whole project again (this is because that in order to develop for 
> cockpit i can't use any of the rapid inplace server development, but 
> compile the while thing and copy the distro to a linux server running the 
> cockpit server)
>
> On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com  
> wrote:
>
>> In my example I only use the gwt-maven-plugin for the "client" part (GWT 
>> part). On the server part I use "pure" Spring Boot approach, therefore I 
>> copied all the JS stuffs from the "client" part with the help of 
>> maven-dependencies-plugin. I'm not using war deployment on Spring Boot...
>>
>> For me the main concept: From GWT project you get just JS file(s) and you 
>> can copy it somewhere else where you have a web server. I also already use 
>> "only" the JS file(s) and copy the automatically to NGinX without server 
>> part.
>>
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:
>>
>>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me 
>>> to do it) and i'm in the process of doing so, the thing is there's no 
>>> "Server part" it's meant to operate as a page under cockpit ui 
>>>
>>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com  
>>> wrote:
>>>
 Hmm it is not good to have "server" part and "client" part (web 
 browser, GWT) in one Maven module... The best practice is always to 
 separate them.

 I wrote some simple explanation in this project: 
 https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules, 
 check the explanation over there...
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:

> i don't know, right now i'm having trouble to even compile everything, 
> i mean, i can either compile all the static files  (html WEB-INF) into a 
> war, OR i can compile the gwt sources, depending on what i place in 
> pom.xml 
> (gwt-app or war) i was trying to have it all in one module
>
> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com  
> wrote:
>
>> Is it not possible to add those contents into an artifact with 
>> assembly for example? So that you can use it later for the dependency? 
>> I'm 
>> doing this in this example:
>> https://github.com/gwtboot/domino-rest-enum-date
>>
>> Hope this helps.
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>
>>> hi..
>>> i have a submodule of a gwt project that it's artifact are meant to 
>>> be included as part of the main artifact (which is a pom containing a 
>>> debian installer) 
>>> usually i would use copy-depdencies plugin to copy the jars into the 
>>> main artifact, but in this case there's no jar, is there a way i can 
>>> copy 
>>> the output directory of that submodule into the main artifact? 
>>>
>> -- 
>> You received this message because you are subscribed to a topic in 
>> the Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "GWT Users" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-web-tool...@googlegroups.com.

>>> To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
  
 
 .

>>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
i'm assuming those 2 need to be in there own aggregator pom (i.e my main
parent pom will a web ui pom, which will have those submodules) , because i
want to be able to build just that webproject alone without the need to
build the whole project again (this is because that in order to develop for
cockpit i can't use any of the rapid inplace server development, but
compile the while thing and copy the distro to a linux server running the
cockpit server)

On Sun, Oct 18, 2020 at 6:23 PM lofid...@gmail.com 
wrote:

> In my example I only use the gwt-maven-plugin for the "client" part (GWT
> part). On the server part I use "pure" Spring Boot approach, therefore I
> copied all the JS stuffs from the "client" part with the help of
> maven-dependencies-plugin. I'm not using war deployment on Spring Boot...
>
> For me the main concept: From GWT project you get just JS file(s) and you
> can copy it somewhere else where you have a web server. I also already use
> "only" the JS file(s) and copy the automatically to NGinX without server
> part.
>
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:
>
>> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me
>> to do it) and i'm in the process of doing so, the thing is there's no
>> "Server part" it's meant to operate as a page under cockpit ui
>>
>> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com 
>> wrote:
>>
>>> Hmm it is not good to have "server" part and "client" part (web browser,
>>> GWT) in one Maven module... The best practice is always to separate them.
>>>
>>> I wrote some simple explanation in this project:
>>> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules,
>>> check the explanation over there...
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>>>
 i don't know, right now i'm having trouble to even compile everything,
 i mean, i can either compile all the static files  (html WEB-INF) into a
 war, OR i can compile the gwt sources, depending on what i place in pom.xml
 (gwt-app or war) i was trying to have it all in one module

 On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com 
 wrote:

> Is it not possible to add those contents into an artifact with
> assembly for example? So that you can use it later for the dependency? I'm
> doing this in this example:
> https://github.com/gwtboot/domino-rest-enum-date
>
> Hope this helps.
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>
>> hi..
>> i have a submodule of a gwt project that it's artifact are meant to
>> be included as part of the main artifact (which is a pom containing a
>> debian installer)
>> usually i would use copy-depdencies plugin to copy the jars into the
>> main artifact, but in this case there's no jar, is there a way i can copy
>> the output directory of that submodule into the main artifact?
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-tool...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
> 
> .
>
 --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "GWT Users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> google-web-tool...@googlegroups.com.
>>>
>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/cf8187c9-d562-4d21-92ad-272ff71507d4n%40googlegroups.com
> 
> .
>

-- 

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
In my example I only use the gwt-maven-plugin for the "client" part (GWT 
part). On the server part I use "pure" Spring Boot approach, therefore I 
copied all the JS stuffs from the "client" part with the help of 
maven-dependencies-plugin. I'm not using war deployment on Spring Boot...

For me the main concept: From GWT project you get just JS file(s) and you 
can copy it somewhere else where you have a web server. I also already use 
"only" the JS file(s) and copy the automatically to NGinX without server 
part.

Elhanan schrieb am Sonntag, 18. Oktober 2020 um 17:03:21 UTC+2:

> yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me to 
> do it) and i'm in the process of doing so, the thing is there's no "Server 
> part" it's meant to operate as a page under cockpit ui 
>
> On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com  
> wrote:
>
>> Hmm it is not good to have "server" part and "client" part (web browser, 
>> GWT) in one Maven module... The best practice is always to separate them.
>>
>> I wrote some simple explanation in this project: 
>> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules, 
>> check the explanation over there...
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>>
>>> i don't know, right now i'm having trouble to even compile everything, i 
>>> mean, i can either compile all the static files  (html WEB-INF) into a war, 
>>> OR i can compile the gwt sources, depending on what i place in pom.xml 
>>> (gwt-app or war) i was trying to have it all in one module
>>>
>>> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com  
>>> wrote:
>>>
 Is it not possible to add those contents into an artifact with assembly 
 for example? So that you can use it later for the dependency? I'm doing 
 this in this example:
 https://github.com/gwtboot/domino-rest-enum-date

 Hope this helps.
 Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:

> hi..
> i have a submodule of a gwt project that it's artifact are meant to be 
> included as part of the main artifact (which is a pom containing a debian 
> installer) 
> usually i would use copy-depdencies plugin to copy the jars into the 
> main artifact, but in this case there's no jar, is there a way i can copy 
> the output directory of that submodule into the main artifact? 
>
 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "GWT Users" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-web-tool...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
  
 
 .

>>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-web-tool...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/cf8187c9-d562-4d21-92ad-272ff71507d4n%40googlegroups.com.


Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
yes, i understand that gwt-maven-plugin is "opinionated" (i.e forces me to
do it) and i'm in the process of doing so, the thing is there's no "Server
part" it's meant to operate as a page under cockpit ui

On Sun, Oct 18, 2020 at 6:00 PM lofid...@gmail.com 
wrote:

> Hmm it is not good to have "server" part and "client" part (web browser,
> GWT) in one Maven module... The best practice is always to separate them.
>
> I wrote some simple explanation in this project:
> https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules,
> check the explanation over there...
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:
>
>> i don't know, right now i'm having trouble to even compile everything, i
>> mean, i can either compile all the static files  (html WEB-INF) into a war,
>> OR i can compile the gwt sources, depending on what i place in pom.xml
>> (gwt-app or war) i was trying to have it all in one module
>>
>> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com 
>> wrote:
>>
>>> Is it not possible to add those contents into an artifact with assembly
>>> for example? So that you can use it later for the dependency? I'm doing
>>> this in this example:
>>> https://github.com/gwtboot/domino-rest-enum-date
>>>
>>> Hope this helps.
>>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>>
 hi..
 i have a submodule of a gwt project that it's artifact are meant to be
 included as part of the main artifact (which is a pom containing a debian
 installer)
 usually i would use copy-depdencies plugin to copy the jars into the
 main artifact, but in this case there's no jar, is there a way i can copy
 the output directory of that submodule into the main artifact?

>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "GWT Users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> google-web-tool...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CAETAEK%2BEJaTbvX7aVpS3UWzHg4-YF2s3JOm0d-3kerW9brWVxg%40mail.gmail.com.


Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
Hmm it is not good to have "server" part and "client" part (web browser, 
GWT) in one Maven module... The best practice is always to separate them.

I wrote some simple explanation in this project: 
https://github.com/gwtboot/domino-rest-enum-date with 3 Maven modules, 
check the explanation over there...
Elhanan schrieb am Sonntag, 18. Oktober 2020 um 16:55:35 UTC+2:

> i don't know, right now i'm having trouble to even compile everything, i 
> mean, i can either compile all the static files  (html WEB-INF) into a war, 
> OR i can compile the gwt sources, depending on what i place in pom.xml 
> (gwt-app or war) i was trying to have it all in one module
>
> On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com  
> wrote:
>
>> Is it not possible to add those contents into an artifact with assembly 
>> for example? So that you can use it later for the dependency? I'm doing 
>> this in this example:
>> https://github.com/gwtboot/domino-rest-enum-date
>>
>> Hope this helps.
>> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>>
>>> hi..
>>> i have a submodule of a gwt project that it's artifact are meant to be 
>>> included as part of the main artifact (which is a pom containing a debian 
>>> installer) 
>>> usually i would use copy-depdencies plugin to copy the jars into the 
>>> main artifact, but in this case there's no jar, is there a way i can copy 
>>> the output directory of that submodule into the main artifact? 
>>>
>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "GWT Users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/b426f9bc-5962-4cc4-888a-895a1cd71d42n%40googlegroups.com.


Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan Maayan
i don't know, right now i'm having trouble to even compile everything, i
mean, i can either compile all the static files  (html WEB-INF) into a war,
OR i can compile the gwt sources, depending on what i place in pom.xml
(gwt-app or war) i was trying to have it all in one module

On Sun, Oct 18, 2020 at 5:49 PM lofid...@gmail.com 
wrote:

> Is it not possible to add those contents into an artifact with assembly
> for example? So that you can use it later for the dependency? I'm doing
> this in this example:
> https://github.com/gwtboot/domino-rest-enum-date
>
> Hope this helps.
> Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:
>
>> hi..
>> i have a submodule of a gwt project that it's artifact are meant to be
>> included as part of the main artifact (which is a pom containing a debian
>> installer)
>> usually i would use copy-depdencies plugin to copy the jars into the main
>> artifact, but in this case there's no jar, is there a way i can copy the
>> output directory of that submodule into the main artifact?
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/42DICj36J0E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CAETAEK%2Bpo%2B3D2Mr07LRxmu%3DKtbgNYT6BFfuRYssjM2_vw38t-Q%40mail.gmail.com.


Re: Including a submodule of a gwt project in maven

2020-10-18 Thread lofid...@gmail.com
Is it not possible to add those contents into an artifact with assembly for 
example? So that you can use it later for the dependency? I'm doing this in 
this example:
https://github.com/gwtboot/domino-rest-enum-date

Hope this helps.
Elhanan schrieb am Sonntag, 18. Oktober 2020 um 12:48:30 UTC+2:

> hi..
> i have a submodule of a gwt project that it's artifact are meant to be 
> included as part of the main artifact (which is a pom containing a debian 
> installer) 
> usually i would use copy-depdencies plugin to copy the jars into the main 
> artifact, but in this case there's no jar, is there a way i can copy the 
> output directory of that submodule into the main artifact? 
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/38ff23af-b3d7-4aef-80e8-9451486aa641n%40googlegroups.com.


Including a submodule of a gwt project in maven

2020-10-18 Thread Elhanan
hi..
i have a submodule of a gwt project that it's artifact are meant to be 
included as part of the main artifact (which is a pom containing a debian 
installer) 
usually i would use copy-depdencies plugin to copy the jars into the main 
artifact, but in this case there's no jar, is there a way i can copy the 
output directory of that submodule into the main artifact? 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/3739cbe6-f21d-4983-a5c1-68b064d6523en%40googlegroups.com.


Re: GWT project with maven

2013-05-27 Thread Δημήτρης Μενούνος
I like to use vanilla maven + antrun plugin for invoking the gwt compiler. 
See:

http://dmenounos.blogspot.gr/2011/01/maven-gwt.html

You gain complete control of the build process.

Τη Πέμπτη, 23 Μαΐου 2013 2:32:35 π.μ. UTC+3, ο χρήστης Srinivasa Rao έγραψε:

 Hi , I am looking for the GWT project with the maven setup. 

  Can you please provide me the link for  the sample project ?


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT project with maven

2013-05-27 Thread Thad
You can run webAppCreator for Maven, see what is creates, and tweak it.

$ webAppCreator -templates sample,maven,readme -out app251 -junit 
~/dev/junit4.10/junit-4.10.jar 

On Wednesday, May 22, 2013 7:32:35 PM UTC-4, Srinivasa Rao wrote:

 Hi , I am looking for the GWT project with the maven setup. 

  Can you please provide me the link for  the sample project ?


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT project with maven

2013-05-23 Thread kim young ill
cannot believe you know know this yet:

https://github.com/tbroyer/gwt-maven-archetypes


On Thu, May 23, 2013 at 5:36 AM, Navin Surtani navssurt...@gmail.comwrote:

 Take a look here for source code for the basic HelloWorld example:

 https://github.com/steinsag/gwt-maven-example

 I used that as an example to follow while building my application.


 On Thursday, May 23, 2013 7:32:35 AM UTC+8, Srinivasa Rao wrote:

 Hi , I am looking for the GWT project with the maven setup.

  Can you please provide me the link for  the sample project ?

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit 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
 http://groups.google.com/group/google-web-toolkit?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




GWT project with maven

2013-05-22 Thread Srinivasa Rao
Hi , I am looking for the GWT project with the maven setup. 

 Can you please provide me the link for  the sample project ?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT project with maven

2013-05-22 Thread Spear Timothy
There are a few examples on the web. Start here 
http://mojo.codehaus.org/gwt-maven-plugin/


On May 22, 2013, at 7:32 PM, Srinivasa Rao srinivasa.bodd...@gmail.com wrote:

 Hi , I am looking for the GWT project with the maven setup. 
 
 Can you please provide me the link for  the sample project ?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT project with maven

2013-05-22 Thread Navin Surtani
Take a look here for source code for the basic HelloWorld example:

https://github.com/steinsag/gwt-maven-example

I used that as an example to follow while building my application.


On Thursday, May 23, 2013 7:32:35 AM UTC+8, Srinivasa Rao wrote:

 Hi , I am looking for the GWT project with the maven setup. 

  Can you please provide me the link for  the sample project ?


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.