boukaibat yassine
boukaibat yassine

Reputation: 3

java - How to upgrade project from gwt 2.5.0 to gwt 2.8.2

I am trying to upgrade my GWT application, which is using GWT 2.5.0 and JDK 6, so I am wondering if any one can help me figuring out the impact or the thinks that should be upgraded.

Thanks in advance.

Upvotes: 0

Views: 1050

Answers (1)

Ajax
Ajax

Reputation: 2520

Um... Upgrade your jars to 2.8.2, and (ideally) set your java language level to 1.8 (and enjoy using lambdas).

If there are compilation errors, fix them, but there probably won't be, as the gwt project generally avoids making backwards incompatible changes.

Instead of listing everything that could go wrong but probably won't it would be better to just update to 2.8.2, and if any errors appear, hop over to the gwtproject gitter and ask about any specific problem you are having.

https://gitter.im/gwtproject/gwt

Upvotes: 1

Related Questions