Skip to content

Commit

Permalink
Update for play 3.0 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
kijuky committed Nov 12, 2023
1 parent 419b0d9 commit 3131d5d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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("."))
Expand All @@ -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
)
)
Expand Down
2 changes: 1 addition & 1 deletion 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")

Expand Down

0 comments on commit 3131d5d

Please sign in to comment.