-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
37 lines (22 loc) · 896 Bytes
/
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
import Dependencies._
name := "retry"
organization := "com.evolutiongaming"
homepage := Some(url("https://github.com/evolution-gaming/retry"))
startYear := Some(2019)
organizationName := "Evolution"
organizationHomepage := Some(url("https://evolution.com"))
publishTo := Some(Resolver.evolutionReleases)
scalaVersion := crossScalaVersions.value.head
crossScalaVersions := Seq("2.13.14", "2.12.19", "3.3.3")
libraryDependencies ++= Seq(
`cats-effect`,
`cats-helper`,
random,
scalatest % Test)
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT")))
releaseCrossBuild := true
Compile / doc / scalacOptions ++= Seq("-groups", "-implicits", "-no-link-warnings")
ThisBuild / versionScheme := Some("early-semver")
//addCommandAlias("check", "all versionPolicyCheck Compile/doc")
addCommandAlias("check", "show version")
addCommandAlias("build", "+all compile test")