0

I'm writing a simple application on Scala using Play Framework and I'd like to use Play Salat in my application. I'm using Intellij IDEA Ultimate as the IDE and I've generated the Play project as it's said in the IDEA documentation. However, I'm unable to find the file 'project/Build.scala' which I have to modify according to the Play Salat installation guide. I've tried to create this file but I was unable to import the play.Project.

Here's what my project structure looks like: project structure screen

I've tried to find any information as to how to install Salat but I haven't found anything which would help me.

Vlad Stryapko
  • 1,035
  • 11
  • 29

1 Answers1

0

In the latest versions of Play Framework Build.scala is equivalent to built.sbt. You should read this

Community
  • 1
  • 1
Bob
  • 1,351
  • 11
  • 28
  • Thanks. I've already tried using Build.sbt to add library dependencies. However, I don't know what to do with 'val main = PlayProject' part of the Salat instruction. Where should I insert it? I suppose, the configuration part should go to conf/application.conf – Vlad Stryapko Jun 22 '15 at 06:12