forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thibault Duplessis
committed
Aug 6, 2020
1 parent
161cb77
commit d8f5cb1
Showing
4 changed files
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,6 @@ PlayKeys.externalizeResources := false | |
scriptClasspath := Seq("*") | ||
// give a fake assets dir to make sure they're not packaged | ||
resourceDirectory in Assets := baseDirectory.value / "public-nothanks" | ||
// don't make an assets jar | ||
PlayKeys.generateAssetsJar := false | ||
// who needs JS routes right? | ||
routesGenerator := LilaRoutesGenerator | ||
maintainer := "[email protected]" | ||
|
@@ -70,7 +68,7 @@ lazy val api = module("api", | |
|
||
lazy val i18n = module("i18n", | ||
Seq(common, db, hub), | ||
Seq(scalatags) | ||
Seq(scalatags, specs2) | ||
).settings( | ||
sourceGenerators in Compile += Def.task { | ||
MessageCompiler( | ||
|
@@ -87,9 +85,9 @@ lazy val puzzle = module("puzzle", | |
reactivemongo.bundle | ||
) | ||
|
||
lazy val quote = module("quote", | ||
lazy val quote = smallModule("quote", | ||
Seq(), | ||
Seq() | ||
Seq(play.json) | ||
) | ||
|
||
lazy val video = module("video", | ||
|
@@ -124,7 +122,7 @@ lazy val evaluation = module("evaluation", | |
|
||
lazy val common = module("common", | ||
Seq(), | ||
Seq(kamon.core, scalatags, jodaForms, scaffeine, specs2) ++ reactivemongo.bundle | ||
Seq(kamon.core, scalatags, jodaForms, scaffeine, specs2, apacheText) ++ reactivemongo.bundle | ||
) | ||
|
||
lazy val rating = module("rating", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.2") | ||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.2-lila_0.1") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2") | ||
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.3") |