Skip to content

Commit 5ec85fd

Browse files
authored
Java core fix (#383)
* Fix: Typo in aws-lambda-java-core version. * Fix: Removing jcenter due to end of life notice.
1 parent f28ecbc commit 5ec85fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example/HelloWorldFunction/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins{
44
}
55

66
repositories {
7-
jcenter()
7+
mavenCentral()
88
}
99

1010
dependencies {
@@ -26,7 +26,7 @@ dependencies {
2626
implementation 'software.amazon.lambda:powertools-validation:1.5.0'
2727
aspectpath 'software.amazon.lambda:powertools-validation:1.5.0'
2828

29-
implementation 'com.amazonaws:aws-lambda-java-core:1.5.0'
29+
implementation 'com.amazonaws:aws-lambda-java-core:1.2.1'
3030
implementation 'com.amazonaws:aws-lambda-java-events:3.1.0'
3131

3232
implementation 'org.apache.logging.log4j:log4j-api:2.13.3'

example/HelloWorldFunction/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>com.amazonaws</groupId>
4848
<artifactId>aws-lambda-java-core</artifactId>
49-
<version>1.5.0</version>
49+
<version>1.2.1</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>com.amazonaws</groupId>

0 commit comments

Comments
 (0)