-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
35 lines (22 loc) · 1.17 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 := "throttler"
organization := "com.evolutiongaming"
homepage := Some(url("https://github.com/evolution-gaming/throttler"))
startYear := Some(2017)
organizationName := "Evolution"
organizationHomepage := Some(url("https://evolution.com"))
scalaVersion := crossScalaVersions.value.head
crossScalaVersions := Seq("2.13.5", "2.12.13")
releaseCrossBuild := true
Compile / doc / scalacOptions ++= Seq("-no-link-warnings")
publishTo := Some(Resolver.evolutionReleases)
libraryDependencies ++= Seq(
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
"com.google.guava" % "guava" % "19.0",
"com.google.code.findbugs" % "jsr305" % "3.0.2",
"org.scalatest" %% "scalatest" % "3.2.9" % Test,
"org.mockito" % "mockito-core" % "3.4.4" % Test,
"org.scalatestplus" %% "scalatestplus-mockito" % "1.0.0-M2" % Test)
licenses := Seq(("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))
//addCommandAlias("check", "all versionPolicyCheck Compile/doc")
addCommandAlias("check", "show version")
addCommandAlias("build", "+all compile test")