forked from lichess-org/scalachess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
38 lines (31 loc) · 1.03 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
36
37
38
name := "scalachess"
organization := "org.lichess"
version := "9.2.2"
scalaVersion := "2.13.2"
libraryDependencies ++= List(
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
"org.scalaz" %% "scalaz-core" % "7.2.30",
"org.specs2" %% "specs2-core" % "4.7.0" % "test",
"org.specs2" %% "specs2-scalaz" % "4.7.0" % "test",
"com.github.ornicar" %% "scalalib" % "6.8",
"joda-time" % "joda-time" % "2.10.6"
)
resolvers ++= Seq(
"lila-maven" at "https://raw.githubusercontent.com/ornicar/lila-maven/master",
"Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"
)
scalacOptions ++= Seq(
"-language:implicitConversions",
"-language:postfixOps",
"-feature",
"-unchecked",
"-deprecation",
"-Xlint:_",
"-Ywarn-macros:after",
"-Ywarn-unused:_",
"-Xmaxerrs",
"12",
"-Xmaxwarns",
"12"
)
publishTo := Some(Resolver.file("file", new File(sys.props.getOrElse("publishTo", ""))))