-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
54 lines (43 loc) · 918 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
43
44
45
46
47
48
49
50
51
52
53
54
plugins {
id("java")
}
group = "ch.epfl.chacun.server"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
sourceSets {
main {
java {
setSrcDirs(listOf("src"))
}
}
test {
java {
setSrcDirs(listOf("test"))
}
}
}
var ENABLE_PREVIEW = "--enable-preview"
tasks.withType<JavaCompile>().configureEach {
options.compilerArgs.add(ENABLE_PREVIEW)
}
tasks.withType<Test>().configureEach {
jvmArgs(ENABLE_PREVIEW)
useJUnitPlatform()
}
tasks.withType<JavaExec>().configureEach {
jvmArgs(ENABLE_PREVIEW)
}
tasks.jar {
manifest {
attributes(
"Main-Class" to "ch.epfl.chacun.Main"
)
}
}
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS