forked from code-check/github-api-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
25 lines (18 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
organization := "io.code-check"
name := """github-api"""
version := "0.2.0-SNAPSHOT"
scalaVersion := "2.11.7"
// Change this to another test framework if you prefer
libraryDependencies ++= Seq(
"com.ning" % "async-http-client" % "1.9.21" % "provided",
"org.asynchttpclient" % "async-http-client" % "2.0.15" % "provided",
"org.json4s" %% "json4s-jackson" % "3.3.0",
"org.json4s" %% "json4s-ext" % "3.3.0",
"joda-time" % "joda-time" % "2.8.1",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.github.scopt" %% "scopt" % "3.3.0",
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
)
val localRepo = "../sbt-repo"
publishTo := Some(Resolver.file("givery repo",file(localRepo))(Patterns(true, Resolver.mavenStyleBasePattern)))
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")