-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (29 loc) · 1.08 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
name := "s3-upload"
version := "0.1-SNAPSHOT"
organization := "com.github.rockjam"
sbtVersion := "0.13.8"
scalaVersion := "2.11.6"
incOptions := incOptions.value.withNameHashing(true)
updateOptions := updateOptions.value.withCachedResolution(true)
Revolver.settings
scalacOptions ++= Seq(
"-Xlint",
"-deprecation",
"-Xfatal-warnings",
"-Ydelambdafy:method",
"-target:jvm-1.7",
"-feature",
"-language:implicitConversions",
"-language:postfixOps"
)
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.0.3",
"com.typesafe.akka" %% "akka-actor" % "2.3.9" exclude("org.scala-lang", "scala-library"),
"com.typesafe.akka" %% "akka-stream-experimental" % "1.0-M5"
exclude("com.typesafe.akka", "akka-actor_2.11")
exclude("org.scala-lang", "scala-library"),
"com.typesafe.akka" %% "akka-http-experimental" % "1.0-M5" exclude("org.scala-lang", "scala-library"),
"com.typesafe.akka" %% "akka-http-core-experimental" % "1.0-M5"
exclude("org.scala-lang", "scala-library")
exclude("org.scala-lang", "scala-reflect")
)