Skip to content

Commit 77cf8e9

Browse files
committed
Change implementation
Use kotlin for settings as well
1 parent 8a396e7 commit 77cf8e9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ dependencies {
3232

3333
implementation(kotlin("stdlib-jdk8"))
3434

35-
compile("com.google.code.gson:gson:$gsonVersion")
36-
compile("com.amazonaws:aws-lambda-java-events:$awsLambdaEventsVersion")
37-
compile("com.amazonaws:aws-lambda-java-core:$awsLambdaCoreVersion")
35+
implementation("com.google.code.gson:gson:$gsonVersion")
36+
implementation("com.amazonaws:aws-lambda-java-events:$awsLambdaEventsVersion")
37+
implementation("com.amazonaws:aws-lambda-java-core:$awsLambdaCoreVersion")
3838

3939
testImplementation(kotlin("reflect", kotlinVersion))
4040
testImplementation(kotlin("test", kotlinVersion))

settings.gradle

-2
This file was deleted.

settings.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = "aws-lambda-java-custom-runtime"
2+

0 commit comments

Comments
 (0)