forked from evolution-gaming/scala-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
45 lines (31 loc) · 1.1 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
39
40
41
42
43
44
45
name := "scala-tools"
organization := "com.evolutiongaming"
homepage := Some(new URL("http://github.com/evolution-gaming/scala-tools"))
startYear := Some(2016)
organizationName := "Evolution Gaming"
organizationHomepage := Some(url("http://evolutiongaming.com"))
bintrayOrganization := Some("evolutiongaming")
scalaVersion := crossScalaVersions.value.last
crossScalaVersions := Seq("2.11.12", "2.12.8")
scalacOptions ++= Seq(
"-encoding", "UTF-8",
"-feature",
"-unchecked",
"-deprecation",
// "-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Xfuture"
)
scalacOptions in (Compile,doc) ++= Seq("-groups", "-implicits", "-no-link-warnings")
resolvers += Resolver.bintrayRepo("evolutiongaming", "maven")
libraryDependencies ++= Seq(
"com.github.t3hnar" %% "scalax" % "3.4",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"com.evolutiongaming" %% "executor-tools" % "1.0.1",
"org.scalatest" %% "scalatest" % "3.0.5" % Test
)
licenses := Seq(("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))
releaseCrossBuild := true