-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (21 loc) · 871 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
name := "loom"
version := "0.1"
organization := "org.gdget"
scalaVersion := "2.11.8"
scalacOptions += "-feature"
resolvers ++= Seq(Resolver.sonatypeRepo("releases"))
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
"org.typelevel" %% "discipline" % "0.7.1" % "test",
"org.typelevel" %% "cats" % "0.8.0",
"org.typelevel" %% "dogs-core" % "0.4.0",
"org.gdget" %% "core" % "0.1",
"org.gdget" %% "partitioned" % "0.1",
"org.apache.commons" % "commons-math3" % "3.6.1",
"org.spire-math" %% "jawn-parser" % "0.9.0",
"org.spire-math" %% "jawn-ast" % "0.9.0"
)
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.8.0")
addCompilerPlugin("com.milessabin" % "si2712fix-plugin" % "1.2.0" cross CrossVersion.full)
mainClass in (Compile, run) := Some("Sandbox")