Reputation: 14399
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
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