-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
35 lines (27 loc) · 1.36 KB
/
Copy pathbuild.sbt
File metadata and controls
35 lines (27 loc) · 1.36 KB
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
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")
ivyScala := ivyScala.value map { _.copy(overrideScalaVersion = true) }
lazy val root = (project in file(".")).
settings(
name := "fastly-lambda",
version := "1.0.23",
scalaVersion := "2.11.7",
retrieveManaged := true,
libraryDependencies += "com.amazonaws" % "aws-lambda-java-core" % "1.1.0",
libraryDependencies += "com.amazonaws" % "aws-lambda-java-events" % "1.1.0",
libraryDependencies += "com.amazonaws" % "aws-java-sdk-s3" % "1.10.45",
libraryDependencies += "com.amazonaws" % "aws-java-sdk-logs" % "1.10.45",
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.6.4",
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.6.3",
libraryDependencies += "org.json4s" %% "json4s-native" % "3.3.0",
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.3.0",
libraryDependencies += "com.typesafe.play" %% "play-ws" % "2.4.4",
libraryDependencies += "com.typesafe" % "config" % "1.3.0",
libraryDependencies += "org.specs2" %% "specs2-core" % "3.7" % "test"
)
fork in Test := true
javaOptions in Test += "-Dconfig.resource=application.test.conf"
assemblyMergeStrategy in assembly :=
{
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}