-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle.kts
42 lines (35 loc) · 977 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
42
plugins {
id("application")
id("org.openjfx.javafxplugin") version "0.0.14"
id("io.freefair.lombok") version "8.0.1"
id("com.needhamsoftware.unojar") version "1.1.0"
}
group = "com.skadistats"
version = "3.1-SNAPSHOT"
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
javafx {
version = "20"
modules("javafx.controls", "javafx.fxml")
}
repositories {
mavenCentral()
}
dependencies {
implementation("com.skadistats:clarity:3.1.1")
implementation("com.tobiasdiez:easybind:2.2")
implementation("ch.qos.logback:logback-classic:1.4.14")
runtimeOnly("org.openjfx:javafx-graphics:${javafx.version}:win")
runtimeOnly("org.openjfx:javafx-graphics:${javafx.version}:linux")
runtimeOnly("org.openjfx:javafx-graphics:${javafx.version}:mac")
}
application {
mainClass.set("skadistats.clarity.analyzer.AnalyzerLauncher")
}
unojar {
archiveVersion.set("")
archiveClassifier.set("")
}