Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-09-01 Thread koma
@abraham, @hilco Thx guys, that did the trick !! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/QfM9YYewuOgJ. To post to this group, send email

building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread koma
Hi I am trying to build a GWT project that is on github with maven, but I run into an error saying that the maven plugin requires at least 2.5.0-rc1 ... is that so ? This is the project : https://github.com/jDramaix/gwtchosen More info here : https://github.com/jDramaix/gwtchosen/issues/1 Can

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread koma
I can see I have two mvn plugins in my .m2 repo : ./org/codehaus/mojo/gwt-maven-plugin/2.4.0 and ./org/codehaus/mojo/gwt-maven-plugin/2.5.0-rc1 How do I tell maven from taken the correct one ? I guess that is just basic maven usage knowledge but ant never troubled me with this kind of @#!!

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread koma
adding this : plugin artifactIdgwt-maven-plugin/artifactId version2.4.0/version /plugin to the plugin section, does not help. Still seeing this : [INFO] --- gwt-maven-plugin:2.5.0-rc1:compile (default) @ chosen-sample --- *MFG !!! (you do not want to know what that acronym means !)* -- You

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread Hilco Wijbenga
On 31 August 2012 12:13, koma k...@koma.be wrote: I can see I have two mvn plugins in my .m2 repo : ./org/codehaus/mojo/gwt-maven-plugin/2.4.0 and ./org/codehaus/mojo/gwt-maven-plugin/2.5.0-rc1 How do I tell maven from taken the correct one ? The plugin version for the GWT Maven plugin

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread Hilco Wijbenga
On 31 August 2012 12:25, koma k...@koma.be wrote: adding this : plugin artifactIdgwt-maven-plugin/artifactId version2.4.0/version /plugin to the plugin section, does not help. Add the groupId? Still seeing this : [INFO] --- gwt-maven-plugin:2.5.0-rc1:compile (default) @ chosen-sample

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread koma
Hi Hilco, thx for the advice ... I am anything but a maven expert, this is a 3rd party project I am trying to include. Can you give me some pointers on how to do that ? the pom is https://github.com/jDramaix/gwtchosen or a sample of a GWT maven project done right ? -- You received this

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

2012-08-31 Thread Abraham Lin
In sample/pom.xml, add the following after line 34 (after artifactIdgwt-maven-plugin/artifactId): version${gwtversion}/version Then add the following between /plugins and /build (following line 71 after the first step): pluginManagement plugins plugin groupIdorg.apache.maven.plugins/groupId