forked from findify/s3mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (20 loc) · 862 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
name := "s3mock"
version := "0.1.4"
organization := "io.findify"
scalaVersion := "2.11.8"
val akkaVersion = "2.4.11"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-http-experimental" % akkaVersion,
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"com.github.pathikrit" %% "better-files" % "2.16.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.43",
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % "test",
"commons-io" % "commons-io" % "2.5" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.7" % "test"
)
licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
bintrayOrganization := Some("findify")
parallelExecution in Test := false