ticofab
ticofab

Reputation: 7717

How to mavenize a Scala / Akka / Play project?

I have a small project which uses Scala, Akka and Play combined. The way I set it up is the old-school way: download everything and link. I would like instead to mavenize the whole thing. Could you recommend me a clear, specific guide to do this? Thanks in advance.

Upvotes: 6

Views: 951

Answers (1)

JasonG
JasonG

Reputation: 5962

Don't use Maven - use SBT - it's the build tool of choice.

Note maven is now squarely in the thoughtworks radar Hold section meaning nobody should be building new projects on it if you trust Fowler's advice: http://www.thoughtworks.com/radar

Play comes with sbt under the hood already so you shouldn't have to look to far from where you are now: http://www.playframework.com/documentation/2.0/Build

Upvotes: 6

Related Questions