-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·25 lines (23 loc) · 839 Bytes
/
build.sbt
File metadata and controls
executable file
·25 lines (23 loc) · 839 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
enablePlugins(JavaAppPackaging)
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "ta.amce.lambda.acme",
scalaVersion := "2.12.7",
version := "0.1.0-SNAPSHOT"
)),
name := "AWS ACME Lambda",
assemblyJarName in assembly := "acme.jar",
libraryDependencies ++= Seq(
"com.amazonaws" % "aws-lambda-java-core" % "1.2.0",
"org.shredzone.acme4j" % "acme4j-utils" % "2.5",
"org.shredzone.acme4j" % "acme4j-client" % "2.5",
"com.frugalmechanic" %% "fm-serializer" % "0.14.0",
"com.frugalmechanic" %% "fm-common" % "0.29.0"
),
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}
)