-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
35 lines (27 loc) · 966 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
plugins {
`java-conventions`
`kotlin-conventions`
`java-library`
`library-publishing-conventions`
}
description = "Restate SDK AWS Lambda integration"
dependencies {
api(project(":sdk-common"))
implementation(project(":sdk-core"))
api(lambdaLibs.core)
api(lambdaLibs.events)
implementation(platform(coreLibs.opentelemetry.bom))
implementation(coreLibs.opentelemetry.api)
implementation(coreLibs.log4j.api)
testAnnotationProcessor(project(":sdk-api-gen"))
testImplementation(project(":sdk-api"))
testImplementation(project(":sdk-api-kotlin"))
testImplementation(project(":sdk-core", "testArchive"))
testImplementation(project(":sdk-serde-jackson"))
testImplementation(testingLibs.junit.jupiter)
testImplementation(testingLibs.assertj)
testImplementation(coreLibs.protobuf.java)
testImplementation(coreLibs.protobuf.kotlin)
testImplementation(coreLibs.log4j.core)
testImplementation(kotlinLibs.kotlinx.coroutines)
}