Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Brandon Donnelson
It appears that the org.ow2.asm:asm-parent:pom:5.0.3 @ is fixed after upgrading to maven 3.2.3. The pom issue goes away. Brandon On Thursday, October 16, 2014 3:48:07 PM UTC-7, Colin Alworth wrote: > > Looks like codehaus's snapshot repo is down, so I'm unable to get the > latest gwt-maven-

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Colin Alworth
Looks like codehaus's snapshot repo is down, so I'm unable to get the latest gwt-maven-plugin. This url gives a 504 gateway timeout from ngnix for me: https://nexus.codehaus.org/content/groups/snapshots-group/org/codehaus/mojo/gwt-maven-plugin/2.7.0-SNAPSHOT/maven-metadata.xml If I set gwt-user

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Brandon Donnelson
I found the reason, trying to find a workaround. The repository definition is causing it to try to download from snapshots where it doesn't exist. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Brandon Donnelson
Thomas I'm noticing the issue coming up on my config. I haven't drilled down to why yet. I copied the samples config. [INFO] [INFO] BUILD FAILURE [INFO] ---

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread tskardal
I'm' also having some trouble. I get errors related to both requestfactory and asm-parent. You can see the error message and pom.xml at this gist: https://gist.github.com/tskardal/0d8287da4265c0fddfc8 I've created a project using the maven archetype, modified the versions and added the snapshot

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Ümit Seren
Ok this error has nothing to do with GWT but with Errai. They iterate through the current working directory (CWD) to find the output folder to generate the server side marshalling classes. If the CWD has symbolic links this will apparently result in a NullPointerException. I have the strong feeling

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Drew Spencer
Somehow I made the requestfactory error go away but I'm still getting this one: [ERROR] Non-resolvable import POM: Could not find artifact org.ow2.asm:asm-parent:pom:5.0.3 @ com.google.gwt:gwt:2.7.0-SNAPSHOT, C:\Users\Drew\.m2\repository\com\google\gwt\gwt\2.7.0-SNAPSHOT\gwt-2.7.0-SNAPSHOT.pom,

Re: RPC vs. RequestFactory vs. RestyGWT

2014-10-16 Thread Jonathan Franchesco Torres Baca
Hi, I share resources to reduce online learning. good luck! MOOC: https://holamundodev.appspot.com/preview Post: http://www.enjava2.com/2014/07/devol.html CRUD in GitHub: Dailypoor - code : https://github.com/chescot2302/dailypoor Link App: https://dailypoor.appspot.com/ APP in GitHub: Devol

Re: SDM incremental compiles and generators

2014-10-16 Thread Thomas Broyer
On Wednesday, October 15, 2014 4:14:49 PM UTC+2, Gal Dolber wrote: > > I kept digging on this issue. I was wrong before, its not that the > presenters reference the injector, the problem is that on every recompile > gwt add the entry point and trace all the reachable classes on the project. >

Re: Devmode (the classic one) using trunk

2014-10-16 Thread Alberto Mancini
I locally built master. On Thu, Oct 16, 2014 at 5:24 PM, Thomas Broyer wrote: > > > On Thursday, October 16, 2014 12:36:45 PM UTC+2, Alberto Mancini wrote: >> >> indeed "option 2" of the post solves the problem. > > > Just to make sure: did you "locally" built master, or are you relying on the >

Re: Devmode (the classic one) using trunk

2014-10-16 Thread Thomas Broyer
On Thursday, October 16, 2014 12:36:45 PM UTC+2, Alberto Mancini wrote: > > indeed "option 2" of the post solves the problem. > Just to make sure: did you "locally" built master, or are you relying on the snapshots we deploy daily to Sonatype OSSRH? -- You received this message because you a

Re: RPC vs. RequestFactory vs. RestyGWT

2014-10-16 Thread Thomas Broyer
On Thursday, October 16, 2014 3:22:47 PM UTC+2, Ümit Seren wrote: > > I have been using RequestFactory extensively for a project and I must say > that although it is pretty well engineered, the learning curve is quite > high. > +1 > If you have a CRUD heacy application where you send and r

Re: RPC vs. RequestFactory vs. RestyGWT

2014-10-16 Thread Ümit Seren
I have been using RequestFactory extensively for a project and I must say that although it is pretty well engineered, the learning curve is quite high. If you have a CRUD heacy application where you send and receive lots of data, it might be a good solution (because it only sends deltas). Howe

Re: RPC vs. RequestFactory vs. RestyGWT

2014-10-16 Thread Vassilis Virvilis
I am using RestyGWT although I am still using it in a RPC type of way and not in a RESTful way. The main reason is that I can split the project to server part and client part more easily. The server part goes with all of my other services without gwt jars where it can share code etc... Vassi

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Ümit Seren
Hmm that's weird. I remember that when I tried to compile the same app with 2.7.0-SNAPSHOT (gwt-maven plugin) two weeks ago it worked fine with maven 3.0.5. However I have now a different issue: I have used your gwt archetype ( https://github.com/tbroyer/gwt-maven-archetypes) and I have three mo

Multiple cell Renderers (or composite cells with UiRenderer/UiHandler)

2014-10-16 Thread Shaun Tarves
I have a fairly complex question about using cells with UiRenderer. I'm finding that for the same object type, I have several variations of the cell that I render based on the view and context it's rendered in. For example, sometimes the cell has a button to remove/delete, other times it doesn'

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Thomas Broyer
This is strange, because I tested the samples with Maven 3.0.5 (this is still my default version) and didn't have this problem :-/ On Thu, Oct 16, 2014 at 2:11 PM, Ümit Seren wrote: > no it didn't help unfortunately. > But I upgraded to maven 3.2.1 and the error went away. > > > > > On Thu, Oct

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Ümit Seren
no it didn't help unfortunately. But I upgraded to maven 3.2.1 and the error went away. On Thu, Oct 16, 2014 at 1:57 PM, Thomas Broyer wrote: > gwt-maven-plugin snapshots are deployed to codehaus, but the plugin > depends on GWT snapshots which are at sonatype, and Maven thus uses the > plugi

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Thomas Broyer
gwt-maven-plugin snapshots are deployed to codehaus, but the plugin depends on GWT snapshots which are at sonatype, and Maven thus uses the pluginRepositories to download them as dependencies of the gwt-maven-plugin (it doesn't look like it uses the repositories listed in gwt-maven-plugin's own POM

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Ümit Seren
I have the same issue with maven 3.0.5 [ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.7.0-SNAPSHOT:compile (gwt-compile) on project genophenbrowser-client: Failed to resolve artifact: Some problems were encountered while processing the POMs: [ERROR] [ERROR] Non-resolvable i

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Drew Spencer
I'm using Eclipse Kepler with m2e 1.4.0.2xx. I think my maven version is 3.0.4 - it's the one that came embedded with eclipse. I'll try the new eclipse and see what that says. On Thursday, 16 October 2014 10:38:27 UTC+1, Thomas Broyer wrote: > > > > On Thu, Oct 16, 2014 at 11:10 AM, Drew Spenc

RPC vs. RequestFactory vs. RestyGWT

2014-10-16 Thread Ralf Klemmer
I've used RPC, RequestFactory and now RestyGWT in some GWT projects. In my opinion RequestFactory development should be canceled and replaced by RestyGWT (or something like that). My key arguments for that drastic opinion: RPC + easy to learn - proprietary - problems when trying to send hierarchi

Re: Devmode (the classic one) using trunk

2014-10-16 Thread Alberto Mancini
indeed "option 2" of the post solves the problem. Thanks. Alberto. On Thu, Oct 16, 2014 at 10:31 AM, Jens wrote: > Read: http://www.draconianoverlord.com/2014/04/01/jdk-compatibility.html > > -- J. > > -- > You received this message because you are subscribed to the Google Groups > "Google We

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Thomas Broyer
On Thu, Oct 16, 2014 at 11:10 AM, Drew Spencer wrote: > I think I'm getting two errors relating to the bugs in the POM that Thomas > mentions above: > > [ERROR] Failed to execute goal > org.codehaus.mojo:gwt-maven-plugin:2.7.0-SNAPSHOT:compile (default-cli) on > project UsavAppV7: Failed to resol

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-16 Thread Drew Spencer
I think I'm getting two errors relating to the bugs in the POM that Thomas mentions above: [ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.7.0-SNAPSHOT:compile (default-cli) on project UsavAppV7: Failed to resolve artifact: Some problems were encountered while processing th

Re: Devmode (the classic one) using trunk

2014-10-16 Thread Jens
Read: http://www.draconianoverlord.com/2014/04/01/jdk-compatibility.html -- J. -- 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

Devmode (the classic one) using trunk

2014-10-16 Thread Alberto Mancini
Hi, doing some test using the last trunk I got this error trying to start devmode. I think it is not really something important cause we are 'leaving' devmode but at least something to notice. Alberto. 08:41:54.975 [ERROR] [sdm0] Unable to load module entry point class null (see associat