forked from zmanio/atmos
-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.sbt
48 lines (34 loc) · 1.03 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
//
// Basic project information.
//
name := "atmos"
version := "2.2"
resolvers += Resolver.sonatypeRepo("public")
description := "minimalist retry-on-failure behavior for scala"
homepage := Some(url("http://github.com/paradoxical-io/"))
startYear := Some(2013)
organization := "io.paradoxical"
organizationName := "paradoxical.io"
scalacOptions ++= Seq (
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:postfixOps",
"-language:experimental.macros",
"-unchecked",
"-Ywarn-nullary-unit",
"-Xlint",
"-Xfuture"
)
organizationHomepage := Some(url("http://github.com/paradoxical-io/"))
scalaVersion := "2.12.2"
crossScalaVersions := Seq("2.11.6", "2.12.2")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.3" % "provided",
"org.slf4j" % "slf4j-api" % "1.7.5" % "provided",
"org.scalatest" %% "scalatest" % "3.0.3" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % "test"
)