-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
41 lines (33 loc) · 868 Bytes
/
build.gradle.kts
File metadata and controls
41 lines (33 loc) · 868 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
37
38
39
40
41
@file:Suppress("SpellCheckingInspection")
plugins {
java
id("application")
id("org.openjfx.javafxplugin") version "0.0.13"
// id("jacoco")
}
java {
modularity.inferModulePath.set(true)
}
application {
mainModule.set(moduleName)
// mainClass.set("cl.uchile.dcc.finalreality.gui.FinalReality")
}
group = "cl.uchile.dcc"
version = "2.0-RELEASE"
repositories {
mavenCentral()
}
dependencies {
implementation("org.openjfx:javafx:18.0.2:pom")
implementation("org.jetbrains:annotations:23.0.0")
implementation("org.apache.commons:commons-lang3:3.12.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}
javafx {
version = "14-ea+6"
modules = mutableListOf("javafx.controls")
}
tasks.named<Test>("test") {
useJUnitPlatform()
}