Skip to content

Instantly share code, notes, and snippets.

@dusanstanojeviccs
Created November 5, 2017 21:51
Show Gist options
  • Save dusanstanojeviccs/a9b7af36531de1372c6830fb539cd585 to your computer and use it in GitHub Desktop.
Save dusanstanojeviccs/a9b7af36531de1372c6830fb539cd585 to your computer and use it in GitHub Desktop.
name := """play-rest-book-db"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.12.2"
libraryDependencies += guice
libraryDependencies += javaJdbc
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.39"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.0"
// Testing libraries for dealing with CompletionStage...
libraryDependencies += "org.assertj" % "assertj-core" % "3.6.2" % Test
libraryDependencies += "org.awaitility" % "awaitility" % "2.0.0" % Test
// Make verbose tests
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment