diff --git a/README.md b/README.md index 3e94979..a344cd0 100755 --- a/README.md +++ b/README.md @@ -11,6 +11,14 @@ You know why you want it: ## SBT +### for play 3.0.x + +```scala +libraryDependencies ++= Seq( + "com.beachape" %% "play-csv" % "2.0" +) +``` + ### for play 2.9.x ```scala diff --git a/build.sbt b/build.sbt index c0bc0e6..bc24718 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -lazy val theVersion = "1.8-SNAPSHOT" +lazy val theVersion = "2.0-SNAPSHOT" lazy val theScalaVersion = "2.13.12" lazy val root = Project(id = "root", base = file(".")) @@ -10,7 +10,7 @@ lazy val root = Project(id = "root", base = file(".")) libraryDependencies ++= Seq( "org.apache.commons" % "commons-lang3" % "3.13.0", "org.apache.commons" % "commons-text" % "1.11.0", - "com.typesafe.play" %% "play" % "2.9.0" % Provided, + "org.playframework" %% "play" % "3.0.0" % Provided, "org.scalatest" %% "scalatest" % "3.2.17" % Test ) ) diff --git a/project/plugins.sbt b/project/plugins.sbt index 26ec2a8..36dc04c 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ // The Play plugin -addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0") +addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.0") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")