gwt material and uibinder + gradle

2016-07-05 Thread Michael Joyner
two dimes: We find Gradle much easier to work with than Maven here at my shop. Especially for "loosely coupled" project dependency setup. We never could get Maven to simply reference other projects arbitrarily. We find Maven is too strict in specifying how projects are connected up with each

Re: gwt material and uibinder

2016-07-04 Thread Pierre Mineaud
> > Oups... This topic is really gone ! :) > But last answer for Gilberto : Without entering too much in detail, our project is about making a huge platform (intranet) for our enterprise with different real application in there with different rules for each login. This can be planning

Re: gwt material and uibinder

2016-07-04 Thread Vassilis Virvilis
I use ant+ivy. It's not perfect for sure but with time it grew deep roots in my company. If you invest on it you can do anything (Turing complete). Right now it's a major undertaking for me to leave ant+ivy for maven. I am not event sure that I like maven that much to do the necessary work... One

Re: gwt material and uibinder

2016-07-04 Thread Gilberto
Yes, Thomas is right: you should try other dependency/build management tools before making a final decision on which one to use. The important thing, in my opinion, is to use something that can read the maven central repository and can automate and standardize your build. Glad your problems

Re: gwt material and uibinder

2016-07-04 Thread Thomas Broyer
On Monday, July 4, 2016 at 8:58:10 AM UTC+2, Pierre Mineaud wrote: > > About maven, you're probably right. But at the moment in my enterprise, we >> are switching direction for our web development (we were on meteor, a >> javascript framework client and server side), and for all developers and

Re: gwt material and uibinder

2016-07-04 Thread Pierre Mineaud
> > Hi Gilberto and thanks for your answer ! ;) > Thanks too for the invitation on the gwt material chat, I will come ! About maven, you're probably right. But at the moment in my enterprise, we are switching direction for our web development (we were on meteor, a javascript framework

Re: gwt material and uibinder

2016-07-02 Thread Gilberto
Hi Pierre! Welcome to GWT and GWT Material =) If you want a faster, direct communication with the developers from GWT Material, join us at the Gitter chat: https://gitter.im/GwtMaterialDesign/gwt-material Also, I advise you to really try to use Maven. I know it's hard and sometimes

Re: gwt material and uibinder

2016-06-29 Thread Pierre Mineaud
Ok... I finally found my error... Here is what I have done : in my myButton2.java code : public class myButton2 extends Composite { private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class); @UiTemplate("myButton2.ui.xml") interface MyUiBinder extends UiBinder { }

Re: gwt material and uibinder

2016-06-29 Thread Pierre Mineaud
I didn't mentionned : I follow this get Started : http://gwtmaterialdesign.github.io/gwt-material-demo/snapshot/#!gettingstarted So I added well the "" in my app.gwt.xml. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this

gwt material and uibinder

2016-06-29 Thread Pierre Mineaud
Hello. I'm totally new on gwt and I would like to use gwt material to make my application's UI. I'm not really confortable with maven, so I downloaded the .jar and imported it in my project. I can so use the component like that : MaterialButton myButton1 = new MaterialButton();