import play.PlayImport.PlayKeys._ import sbt.Keys._ import sbt._ object Common { val appSettings = Seq( version := "1.0" + sys.props("build.number"), organization := "Organization", scalaVersion := "2.11.1", scalaVersion in Test := "2.11.1", testOptions in Test := Nil, parallelExecution in Test := false, scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-Ywarn-adapted-args", "-Xlint") ) val mainAppSettings = Seq( Keys.fork in Test := false, routesImport ++= Seq("scala.language.reflectiveCalls"), unmanagedResourceDirectories in Compile <+= baseDirectory(_ / "app"), scalacOptions in test += "-Dconfig.file=conf/test.conf -Dlogger.resource=conf/test-logger.xml" ) }