Play framework, update project to latest version

I'm trying to search, but couldn't find how to update the playframework project to the latest playframework.

For example, my project was built using playframework 2.3.4 and I want to upgrade to 2.3.7.

Thank.

+3


source to share


1 answer


If you are just upgrading from 2.3.4 to 2.3.7, literally all you have to do is change the playback version in your file plugins.sbt

to 2.3.7.

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.7")

      



And I think for a good mileage measurement activator clean

.

This is only a minor version update, so there are no changes in the change between versions 2.3.x - only minor additions and bug fixes.

+5


source







All Articles