Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name := "scala-lambda-handler"
organization := "com.lifeway.aws"

scalaVersion := "2.12.8"
scalaVersion := "2.13.1"
crossScalaVersions := Seq("2.12.11", "2.13.1")

val circeVersion = "0.12.3"
val slf4jVersion = "1.7.26"
Expand All @@ -12,7 +13,7 @@ libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % slf4jVersion,
"com.amazonaws" % "aws-lambda-java-core" % "1.2.0",
"com.lihaoyi" %% "requests" % "0.2.0",
"com.lihaoyi" %% "utest" % "0.6.3" % "test"
"com.lihaoyi" %% "utest" % "0.7.4" % "test"
)

testFrameworks += new TestFramework("utest.runner.Framework")
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.1
sbt.version=1.3.8
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.7")
1 change: 1 addition & 0 deletions src/main/scala/com/lifeway/aws/lambda/ProxyWithBody.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import com.amazonaws.services.lambda.runtime.Context
import io.circe
import io.circe._
import io.circe.parser._
import com.lifeway.aws.lambda.Errors

/**
* Abstract Lambda Handler for Scala for API Gateway Proxied requests containing a JSON message body. You must extend
Expand Down
1 change: 1 addition & 0 deletions src/test/scala/com/lifeway/aws/lambda/ErrorsTest.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.lifeway.aws.lambda

import com.lifeway.aws.lambda.Errors
import io.circe._
import io.circe.syntax._
import utest._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.lifeway.aws.lambda

import com.lifeway.aws.lambda.Errors
import java.io.ByteArrayOutputStream

import com.amazonaws.services.lambda.runtime.Context
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.lifeway.aws.lambda

import com.lifeway.aws.lambda.Errors
import java.io.ByteArrayOutputStream

import com.amazonaws.services.lambda.runtime.Context
Expand Down