From 9c63eddb3e37e222f16052873f440c05ec5c5b47 Mon Sep 17 00:00:00 2001 From: msailes Date: Wed, 5 May 2021 09:30:02 +0100 Subject: [PATCH 1/2] Fix: Typo in aws-lambda-java-core version. --- example/HelloWorldFunction/build.gradle | 2 +- example/HelloWorldFunction/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/HelloWorldFunction/build.gradle b/example/HelloWorldFunction/build.gradle index f08ea4357..deb5644f2 100644 --- a/example/HelloWorldFunction/build.gradle +++ b/example/HelloWorldFunction/build.gradle @@ -26,7 +26,7 @@ dependencies { implementation 'software.amazon.lambda:powertools-validation:1.5.0' aspectpath 'software.amazon.lambda:powertools-validation:1.5.0' - implementation 'com.amazonaws:aws-lambda-java-core:1.5.0' + implementation 'com.amazonaws:aws-lambda-java-core:1.2.1' implementation 'com.amazonaws:aws-lambda-java-events:3.1.0' implementation 'org.apache.logging.log4j:log4j-api:2.13.3' diff --git a/example/HelloWorldFunction/pom.xml b/example/HelloWorldFunction/pom.xml index a6714159e..344ce817a 100644 --- a/example/HelloWorldFunction/pom.xml +++ b/example/HelloWorldFunction/pom.xml @@ -46,7 +46,7 @@ com.amazonaws aws-lambda-java-core - 1.5.0 + 1.2.1 com.amazonaws From cdac20e1e652c1e515f54fc703bac8fd6c17e6e6 Mon Sep 17 00:00:00 2001 From: msailes Date: Wed, 5 May 2021 10:20:46 +0100 Subject: [PATCH 2/2] Fix: Removing jcenter due to end of life notice. --- example/HelloWorldFunction/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/HelloWorldFunction/build.gradle b/example/HelloWorldFunction/build.gradle index deb5644f2..625a332d2 100644 --- a/example/HelloWorldFunction/build.gradle +++ b/example/HelloWorldFunction/build.gradle @@ -4,7 +4,7 @@ plugins{ } repositories { - jcenter() + mavenCentral() } dependencies {