Skip to content

Commit

Permalink
We have two paginators 😱
Browse files Browse the repository at this point in the history
  • Loading branch information
lenguyenthanh committed Apr 10, 2024
1 parent a88a6d4 commit 14ae10f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 142 deletions.
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,28 @@ lazy val model: Project = Project("model", file("model"))
)
.dependsOn(core)

lazy val playJson: Project = Project("playJson", file("playJson"))
// functions that useful for lila & lila-ws
lazy val lila: Project = Project("lila", file("lila"))
.settings(
commonSettings,
name := "scalalib-play-json",
name := "scalalib-lila",
libraryDependencies ++= List(
"org.playframework" %% "play-json" % "3.0.2"
"com.github.ben-manes.caffeine" % "caffeine" % "3.1.8" % "compile",
"com.github.blemale" %% "scaffeine" % "5.2.1" % "compile",
"org.scalameta" %% "munit" % "1.0.0-M11" % Test
)
)
.dependsOn(core, model)

// functions that useful for lila & lila-ws
lazy val lila: Project = Project("lila", file("lila"))
lazy val playJson: Project = Project("playJson", file("playJson"))
.settings(
commonSettings,
name := "scalalib-lila",
name := "scalalib-play-json",
libraryDependencies ++= List(
"com.github.ben-manes.caffeine" % "caffeine" % "3.1.8" % "compile",
"com.github.blemale" %% "scaffeine" % "5.2.1" % "compile",
"org.scalameta" %% "munit" % "1.0.0-M11" % Test
"org.playframework" %% "play-json" % "3.0.2"
)
)
.dependsOn(core, model, playJson)
.dependsOn(core, lila)

lazy val root = project
.in(file("."))
Expand Down
132 changes: 0 additions & 132 deletions model/src/main/scala/paginator.scala

This file was deleted.

0 comments on commit 14ae10f

Please sign in to comment.