Just for clarity, as of play2 there is no longer any official support for packaging your project as a war file and furthermore it doesnt look like support will be coming back anytime soon.
Play2 now comes with its own webserver based on Netty and to deploy you can use "play stage" to package up you project and run it in place using the "target/start" command.
If your going to host your project on a server without Play2 installed, just use the "sbt compile stage" command first which will bundle the necessary dependencies for you.
There is however an unofficial effort at https://github.com/dlecan/play2-war-plugin if your still interested in deploying to a Servlet 3.0 or 2.5 container (Tomcat 6/7, Jetty 7/8/9, JBoss 5/6/ etc) I havent used this personally but I have heard good things about it.