forked from paradoxical-io/atmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
43 lines (29 loc) · 820 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
import _root_.io.narrative.build._
name := "atmos"
version := "2.3"
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",
"-Xlint"
)
scalacOptions --= Seq(
"-Xfatal-warnings"
)
organizationHomepage := Some(url("http://github.com/paradoxical-io/"))
scalaVersion := "2.13.10"
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.5" % "provided"
)
enablePlugins(LibraryProjectPlugin)