Re: Package a GWT client project, no server code.

2016-08-22 Thread Mickael BARON
Thanks a lot.

I was cloning and compiling your project rxcanvas-gwt. The folder 
target/rxcanvas-gwt-1.0-SNAPSHOT is a runtime version of the GWT 
application. It's great. Thanks.

As Thomas Broyer said (https://t.co/NA8Y3izLcY) is very important to split 
our GWT application to have this kind of capability.

Mickael  

Le samedi 20 août 2016 19:48:46 UTC+2, Ignacio Baca Moreno-Torres a écrit :
>
> You should try the new gwt-maven-plugin, it's not your solution, but it's 
> a good idea ;). And you should known that the war is a zip, so actually 
> your war just contains the META-INF and the GWT output folder. Take a look 
> to this project for example (https://github.com/ibaca/rxcanvas-gwt), 
> after a 'mvn package' you can see that the 'unzip target/*.war' creates 2 
> folders, the META-INF (that maybe can be descarted, but I'm don't know how 
> to do it right now) and the rxcanvas that contains the whole web.
>
> On Saturday, August 20, 2016 at 7:16:25 PM UTC+2, Juan Pablo Gardella 
> wrote:
>>
>> Maybe you can achieve that by using maven-assembly-plugin 
>>
>> El sáb., ago. 20, 2016 13:22, Mickael BARON  
>> escribió:
>>
>>> Hi,
>>>
>>> With the GWT Maven plugin (
>>> https://gwt-maven-plugin.github.io/gwt-maven-plugin/), i can package my 
>>> GWT application into a war file. But, if my GWT application contains only 
>>> client layer (no server aspect), is there a solution to package to a 
>>> classical web application (for example a zip file) ? In other words, no 
>>> web.xml, no META-INF... only the generated GWT application files. I plan to 
>>> use a Maven assembly to package my GWT application ?
>>>
>>> Any idea ?
>>>
>>> Mickael
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "GWT Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to google-web-toolkit+unsubscr...@googlegroups.com.
>>> To post to this group, send email to google-we...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

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


Re: Package a GWT client project, no server code.

2016-08-20 Thread Ignacio Baca Moreno-Torres
You should try the new gwt-maven-plugin, it's not your solution, but it's a 
good idea ;). And you should known that the war is a zip, so actually your 
war just contains the META-INF and the GWT output folder. Take a look to 
this project for example (https://github.com/ibaca/rxcanvas-gwt), after a 
'mvn package' you can see that the 'unzip target/*.war' creates 2 folders, 
the META-INF (that maybe can be descarted, but I'm don't know how to do it 
right now) and the rxcanvas that contains the whole web.

On Saturday, August 20, 2016 at 7:16:25 PM UTC+2, Juan Pablo Gardella wrote:
>
> Maybe you can achieve that by using maven-assembly-plugin 
>
> El sáb., ago. 20, 2016 13:22, Mickael BARON  > escribió:
>
>> Hi,
>>
>> With the GWT Maven plugin (
>> https://gwt-maven-plugin.github.io/gwt-maven-plugin/), i can package my 
>> GWT application into a war file. But, if my GWT application contains only 
>> client layer (no server aspect), is there a solution to package to a 
>> classical web application (for example a zip file) ? In other words, no 
>> web.xml, no META-INF... only the generated GWT application files. I plan to 
>> use a Maven assembly to package my GWT application ?
>>
>> Any idea ?
>>
>> Mickael
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit+unsubscr...@googlegroups.com .
>> To post to this group, send email to google-we...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

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


Re: Package a GWT client project, no server code.

2016-08-20 Thread Juan Pablo Gardella
Maybe you can achieve that by using maven-assembly-plugin

El sáb., ago. 20, 2016 13:22, Mickael BARON 
escribió:

> Hi,
>
> With the GWT Maven plugin (
> https://gwt-maven-plugin.github.io/gwt-maven-plugin/), i can package my
> GWT application into a war file. But, if my GWT application contains only
> client layer (no server aspect), is there a solution to package to a
> classical web application (for example a zip file) ? In other words, no
> web.xml, no META-INF... only the generated GWT application files. I plan to
> use a Maven assembly to package my GWT application ?
>
> Any idea ?
>
> Mickael
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

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


Package a GWT client project, no server code.

2016-08-20 Thread Mickael BARON
Hi,

With the GWT Maven plugin 
(https://gwt-maven-plugin.github.io/gwt-maven-plugin/), i can package my 
GWT application into a war file. But, if my GWT application contains only 
client layer (no server aspect), is there a solution to package to a 
classical web application (for example a zip file) ? In other words, no 
web.xml, no META-INF... only the generated GWT application files. I plan to 
use a Maven assembly to package my GWT application ?

Any idea ?

Mickael

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