-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (30 loc) · 944 Bytes
/
build.gradle.kts
File metadata and controls
36 lines (30 loc) · 944 Bytes
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
plugins {
id("application")
}
description = "coap-cli"
dependencies {
implementation(project(":coap-core"))
implementation(project(":coap-tcp"))
implementation(project(":lwm2m"))
implementation(project(":coap-mbedtls"))
implementation("org.slf4j:slf4j-api:2.0.17")
implementation("ch.qos.logback:logback-classic:1.5.18")
implementation("info.picocli:picocli:4.7.7")
testImplementation("org.mockito:mockito-core:5.19.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.13.4")
testImplementation("org.awaitility:awaitility:4.3.0")
testImplementation(testFixtures(project(":coap-core")))
}
tasks {
withType<JacocoBase> { enabled = false }
withType<AbstractPublishToMaven> { enabled = false }
}
application {
mainClass.set("com.mbed.coap.cli.Main")
}
distributions {
application.applicationName = "coap"
main {
distributionBaseName.set("coap-cli")
}
}