This repository has been archived by the owner on Apr 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
48 lines (40 loc) · 1.73 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
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "io.tabmo",
scalaVersion := "2.12.5",
version := "0.1.0-SNAPSHOT"
)),
scalacOptions ++= Seq(
"-deprecation", // Warn when deprecated API are used
"-feature", // Warn for usages of features that should be importer explicitly
"-unchecked", // Warn when generated code depends on assumptions
"-Ywarn-dead-code", // Warn when dead code is identified
"-Ywarn-numeric-widen", // Warn when numeric are widened
"-Xlint", // Additional warnings (see scalac -Xlint:help)
"-Ywarn-adapted-args", // Warn if an argument list is modified to match the receive
"-language:postfixOps",
"-language:implicitConversions",
"-language:reflectiveCalls",
"-language:existentials",
"-language:higherKinds",
"-language:experimental.macros"
),
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.4"),
organization := "io.tabmo",
name := "aerospike4s",
libraryDependencies += scalaTest % Test,
libraryDependencies += "org.typelevel" %% "cats-core" % "1.1.0",
libraryDependencies += "com.aerospike" % "aerospike-client" % "4.1.6",
libraryDependencies += "com.chuusai" %% "shapeless" % "2.3.3",
/*
* Publish to tabmo organization on bintray
*/
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
bintrayOrganization := Some("tabmo")
/*libraryDependencies ++= Seq(
"com.whisk" %% "docker-testkit-scalatest" % "0.9.5" % "test",
"com.whisk" %% "docker-testkit-impl-spotify" % "0.9.5" % "test"),
libraryDependencies += "org.typelevel" %% "discipline" % "0.7.3" % "test"*/
)