-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
41 lines (32 loc) · 999 Bytes
/
build.gradle.kts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
kotlin("jvm") version "2.0.21"
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "co"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.2")
implementation("com.amazonaws:aws-lambda-java-core:1.2.3")
implementation("com.amazonaws:aws-lambda-java-events:3.11.1")
implementation("io.ktor:ktor-client-core:3.0.3")
implementation("io.ktor:ktor-client-cio:3.0.3")
implementation("io.github.cdimascio:dotenv-kotlin:6.5.0")
testImplementation(kotlin("test"))
testImplementation("io.mockk:mockk:1.13.14")
}
kotlin {
jvmToolchain(17)
}
tasks {
test {
useJUnitPlatform()
}
shadowJar {
archiveBaseName.set("yappu-world-server-lambda") // JAR 기본 이름
archiveVersion.set("") // 버전 제거
archiveClassifier.set("shadow") // 기본 bootJar와 구분
}
}