-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
38 lines (30 loc) · 812 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
name := "scalaplotlib"
organization := "io.github.jeremyrsmith"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.11.8"
crossScalaVersions := Seq(
"2.11.8", "2.11.11", "2.12.4"
)
libraryDependencies ++= Seq(
"org.jfree" % "jfreechart" % "1.0.19",
"org.jfree" % "jfreesvg" % "3.2",
"com.chuusai" %% "shapeless" % "2.3.2",
"org.apache.spark" %% "spark-sql" % "2.0.0" % "provided"
)
scalacOptions ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:experimental.macros",
"-unchecked",
"-Xfatal-warnings",
"-Yno-adapted-args",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Xfuture",
"-P:splain:color:false"
)
addCompilerPlugin("io.tryp" %% "splain" % "0.2.6")