From: Edwin C. <com...@gm...> - 2009-03-20 16:33:08
|
The reason to build against 1.4.60 is to ensure the build is backward compatible with GWT 1.4.60 and up. GWT 1.5 would allow enums and generics, which I personally would be much in favor of. I also have some unit test code that I run under GWT 1.5 to use the GWTTestSuite. Personally I wouldn't mind dropping backward compatibality, since it is only GUI code, so even if you're tied to 1.4 on the server the GUI can be compiled against 1.5, but it can get confusing. For me another reason to move to 1.5 is that I think web applications should keep up with the latest versions of the GUI frameworks they are using, or (as I have already experienced) they end up with old framework code where you have to solve all the quirks that may pop up yourself and that can get very nasty. What do the others think? Greetings, Edwin 2009/3/20 Farrukh Najmi <fa...@we...> > > Hi Guys, > > Attached is a simple patch to align pom.xml for maven build with GWT 1.5.3. > Please review and let me know if it is OK to commit. Thanks. > > -- > Regards, > Farrukh > > Web: http://www.wellfleetsoftware.com > > > > ? pom-patch.txt > Index: pom.xml > =================================================================== > RCS file: /cvsroot/gwt-openlayers/gwt-openlayers/pom.xml,v > retrieving revision 1.6 > diff -u -r1.6 pom.xml > --- pom.xml 20 Mar 2009 02:27:33 -0000 1.6 > +++ pom.xml 20 Mar 2009 16:09:17 -0000 > @@ -9,9 +9,9 @@ > <url>http://maven.apache.org</url> > <dependencies> > <dependency> > - <groupId>gwt</groupId> > + <groupId>com.google.gwt</groupId> > <artifactId>gwt-user</artifactId> > - <version>1.4.60</version> > + <version>1.5.3</version> > </dependency> > > <dependency> > > > ------------------------------------------------------------------------------ > Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are > powering Web 2.0 with engaging, cross-platform capabilities. Quickly and > easily build your RIAs with Flex Builder, the Eclipse(TM)based development > software that enables intelligent coding and step-through debugging. > Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com > _______________________________________________ > Gwt-openlayers-devl mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-devl > > |