-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
31 lines (28 loc) · 1.05 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
enablePlugins(ScalafmtPlugin)
lazy val root = (project in file(".")).settings(
inThisBuild(
List(
organization := "com.example",
scalaVersion := "2.11.11",
version := "0.1.0-SNAPSHOT"
)),
name := "embulk-key_to_redis",
scalafmtOnCompile in ThisBuild := true,
scalafmtTestOnCompile in ThisBuild := true
)
resolvers += Resolver.jcenterRepo
resolvers += Resolver.sonatypeRepo("releases")
resolvers += "velvia maven" at "http://dl.bintray.com/velvia/maven"
lazy val circeVersion = "0.8.0"
libraryDependencies ++= Seq(
"org.jruby" % "jruby-complete" % "1.6.5",
"org.embulk" % "embulk-core" % "0.8.29",
"com.github.etaty" %% "rediscala" % "1.7.0",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.scalacheck" %% "scalacheck" % "1.13.4" % Test,
"org.scalatest" %% "scalatest" % "3.0.1" % Test,
"org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % Test,
"com.github.alexarchambault" %% "scalacheck-shapeless_1.13" % "1.1.5" % Test
)