user626528
user626528

Reputation: 14399

How do I migrate Play application from v2.2.5 to v2.3.5?

It seems the new version of Play framework is using some new tool named "Activator" instead of the old "play" command line tool; what should I do to build my old project using this "Activator"? Any conversion steps?

Upvotes: 0

Views: 55

Answers (1)

Andreas Neumann
Andreas Neumann

Reputation: 10884

activator works as the play command. Just type activator <command>instead of play <command>.

There is a page in the Play documentation addressing your migration Problems: https://www.playframework.com/documentation/2.3.4/Migration23

Upvotes: 2

Related Questions