-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
46 lines (32 loc) · 1019 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
38
39
40
41
42
43
44
45
46
import Dependencies._
name := "pubsub"
organization := "com.evolutiongaming"
homepage := Some(url("https://github.com/evolution-gaming/pubsub"))
startYear := Some(2017)
organizationName := "Evolution"
organizationHomepage := Some(url("https://evolution.com"))
scalaVersion := crossScalaVersions.value.head
crossScalaVersions := Seq("2.13.5", "2.12.13")
publishTo := Some(Resolver.evolutionReleases)
libraryDependencies ++= Seq(
Akka.Actor,
Akka.Stream,
Akka.ClusterTools,
Akka.Testkit % Test,
Scodec.core,
Scodec.bits,
Cats.core,
Cats.effect,
`safe-actor`,
scalax,
`metric-tools`,
`akka-serialization`,
`cats-helper`,
scache,
scalatest % Test)
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT")))
releaseCrossBuild := true
Compile / doc / scalacOptions ++= Seq("-groups", "-implicits", "-no-link-warnings")
//addCommandAlias("check", "all versionPolicyCheck Compile/doc")
addCommandAlias("check", "show version")
addCommandAlias("build", "+all compile test")