forked from findify/sqsmock
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
27 lines (18 loc) · 712 Bytes
/
Copy pathbuild.sbt
File metadata and controls
27 lines (18 loc) · 712 Bytes
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
name := "sqsmock"
version := "0.3.3-SNAPSHOT"
organization := "io.findify"
scalaVersion := "2.12.3"
val akkaVersion = "2.5.1"
crossScalaVersions := Seq("2.12.3", "2.11.8")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-http" % "10.0.6",
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"joda-time" % "joda-time" % "2.9.4",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"com.amazonaws" % "aws-java-sdk-sqs" % "1.11.126" % "test"
)
licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
bintrayOrganization := Some("findify")
parallelExecution in Test := false