forked from eclipse-zenoh/zenoh-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
96 lines (86 loc) · 2.68 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
//
// 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]>
//
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
kotlin("jvm")
kotlin("plugin.serialization")
id("com.gradleup.shadow")
}
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(
"ZBytes",
"ZDelete",
"ZGet",
"ZGetLiveliness",
"ZInfo",
"ZLiveliness",
"ZPing",
"ZPong",
"ZPub",
"ZPubThr",
"ZPut",
"ZQuerier",
"ZQueryable",
"ZScout",
"ZSub",
"ZSubLiveliness",
"ZSubThr"
)
examples.forEach { example ->
register<ShadowJar>("${example}Jar") {
group = "build"
description = "Build a fat JAR for the $example example"
from(sourceSets["main"].output)
manifest {
attributes["Main-Class"] = "io.zenoh.${example}Kt"
}
configurations.empty()
configurations.add(project.configurations.getByName("runtimeClasspath"))
archiveBaseName.set(example)
archiveVersion.set("")
archiveClassifier.set("")
}
}
register("buildExamples") {
group = "build"
description = "Build all fat JARs for the Zenoh Kotlin examples"
dependsOn(examples.map { "${it}Jar" })
}
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")
jvmArgs(defaultJvmArgs)
}
}
}
tasks.register("CompileZenohJNI") {
project.exec {
commandLine("cargo", "build", "--release", "--manifest-path", "./zenoh-jni/Cargo.toml")
}
}