forked from eclipse-zenoh/zenoh-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
66 lines (60 loc) · 1.89 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//
// Copyright (c) 2023 ZettaScale Technology
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
//
// Contributors:
// ZettaScale Zenoh Team, <[email protected]>
//
plugins {
kotlin("jvm")
kotlin("plugin.serialization")
}
kotlin {
jvmToolchain(11)
}
dependencies {
implementation(project(":zenoh-kotlin"))
implementation("commons-net:commons-net:3.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("com.github.ajalt.clikt:clikt:4.2.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
}
tasks {
val examples = listOf(
"ZDelete",
"ZGet",
"ZPub",
"ZPubThr",
"ZPut",
"ZQueryable",
"ZSub",
"ZSubThr"
)
examples.forEach { example ->
register(example, JavaExec::class) {
dependsOn("CompileZenohJNI")
description = "Run the $example example"
mainClass.set("io.zenoh.${example}Kt")
classpath(sourceSets["main"].runtimeClasspath)
val zenohPaths = "../zenoh-jni/target/release"
val defaultJvmArgs = arrayListOf("-Djava.library.path=$zenohPaths")
val loggerLvl = project.findProperty("zenoh.logger")?.toString()
if (loggerLvl != null) {
jvmArgs(defaultJvmArgs + "-Dzenoh.logger=$loggerLvl")
} else {
jvmArgs(defaultJvmArgs)
}
}
}
}
tasks.register("CompileZenohJNI") {
project.exec {
commandLine("cargo", "build", "--release", "--manifest-path", "../zenoh-jni/Cargo.toml")
}
}