-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
73 lines (57 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// Basic project information.
//
name := "atmos"
version := "2.3"
resolvers ++= Resolver.sonatypeOssRepos("public")
description := "minimalist retry-on-failure behavior for scala"
homepage := Some(url("http://github.com/dspasojevic/atmost/"))
startYear := Some(2013)
organization := "io.github.dspasojevic"
organizationName := "dspasojevic.github.io"
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
developers := List(
Developer(
"lonnie",
"Lonnie Pryor",
"",
url("http://zman.io")
),
Developer(
"devshorts",
"Anton Kropp",
"",
url("http://onoffswitch.net")
),
Developer(
"dspasojevic",
"Daniel Spasojevic",
"",
url("https://github.com/dspasojevic")
)
)
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:postfixOps",
"-language:experimental.macros",
"-unchecked",
"-Xlint",
"-Xfuture"
)
organizationHomepage := Some(url("http://github.com/paradoxical-io/"))
scalaVersion := "2.12.10"
crossScalaVersions := Seq("2.11.12", "2.12.10", "2.13.10")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.27" % "provided",
"org.slf4j" % "slf4j-api" % "1.7.5" % "provided",
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"org.scalamock" %% "scalamock" % "4.4.0" % "test"
)