forked from lichess-org/lila-fishnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (25 loc) · 1.19 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name := "lila-fishnet"
version := "1.0-SNAPSHOT"
maintainer := "lichess.org"
lazy val root = (project in file("."))
.enablePlugins(PlayScala, PlayNettyServer)
.disablePlugins(PlayFilters, PlayAkkaHttpServer)
scalaVersion := "2.13.2"
val kamonVersion = "2.1.1"
libraryDependencies += guice
libraryDependencies += "io.lettuce" % "lettuce-core" % "5.3.1.RELEASE"
libraryDependencies += "io.netty" % "netty-transport-native-epoll" % "4.1.50.Final" classifier "linux-x86_64"
libraryDependencies += "joda-time" % "joda-time" % "2.10.6"
libraryDependencies += "org.lichess" %% "scalachess" % "9.2.1"
libraryDependencies += "io.kamon" %% "kamon-core" % kamonVersion
libraryDependencies += "io.kamon" %% "kamon-influxdb" % kamonVersion
libraryDependencies += "io.kamon" %% "kamon-system-metrics" % kamonVersion
resolvers += "lila-maven" at "https://raw.githubusercontent.com/ornicar/lila-maven/master"
scalacOptions ++= Seq(
"-language:implicitConversions",
"-feature",
"-deprecation",
"-Xfatal-warnings"
)
sources in (Compile, doc) := Seq.empty
publishArtifact in (Compile, packageDoc) := false