-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.sbt
40 lines (29 loc) · 1.03 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
32
33
34
35
36
37
38
39
40
name := "sqsmock"
version := "0.4.1"
organization := "io.findify"
scalaVersion := "2.12.13"
val akkaVersion = "2.6.14"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-http" % "10.2.4",
"org.scala-lang.modules" %% "scala-xml" % "1.3.0",
"joda-time" % "joda-time" % "2.10.10",
"org.scalatest" %% "scalatest" % "3.0.9" % "test",
"com.amazonaws" % "aws-java-sdk-sqs" % "1.11.1000" % "test"
)
licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
parallelExecution in Test := false
publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
homepage := Some(url("https://github.com/findify/sqsmock"))
scmInfo := Some(
ScmInfo(
url("https://github.com/findify/sqsmock"),
"scm:[email protected]:findify/sqsmock.git"
)
)
developers := List(
Developer(id = "romangrebennikov", name = "Roman Grebennikov", email = "[email protected]", url = url("https://dfdx.me/"))
)
scalacOptions += "-target:jvm-1.8"