-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
85 lines (77 loc) · 2.26 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
@Suppress("DSL_SCOPE_VIOLATION") // https://youtrack.jetbrains.com/issue/KTIJ-19369
plugins {
java
application
alias(libs.plugins.style)
alias(libs.plugins.jagr.gradle)
alias(libs.plugins.javafx)
}
version = file("version").readLines().first()
jagr {
assignmentId.set("projekt")
submissions {
val main by creating {
from(project(":"))
from(project(":application"))
from(project(":domain"))
from(project(":infrastructure"))
// ACHTUNG!
// Kommentieren Sie die folgenden Zeilen ein und setzen Sie im folgenden Bereich Ihre
// TU-ID (NICHT Ihre Matrikelnummer!), Ihren Nachnamen und Ihren Vornamen
// in Anführungszeichen (z.B. "ab12cdef" für Ihre TU-ID) ein! Geben Sie dabei die Daten eines beliebigen
// Gruppenmitgliedes an.
//studentId.set("null")
//firstName.set("null")
//lastName.set("null")
}
}
graders {
val graderPublic by creating {
graderName.set("FOP-2223-Projekt-Public")
rubricProviderName.set("projekt.Projekt_RubricProvider")
configureDependencies {
implementation(libs.algoutils.tutor)
implementation(libs.mockito.inline)
}
}
}
}
dependencies {
implementation(libs.annotations)
implementation(libs.algoutils.student)
implementation(libs.flatlaf)
testImplementation(libs.junit.core)
testImplementation(project(":application"))
testImplementation(project(":infrastructure"))
testImplementation(project(":domain"))
implementation(project(":application"))
runtimeOnly(project(":infrastructure"))
compileOnly(project(":infrastructure"))
}
application {
mainClass.set("projekt.Main")
}
tasks {
val runDir = File("build/run")
withType<JavaExec> {
doFirst {
runDir.mkdirs()
}
workingDir = runDir
}
test {
doFirst {
runDir.mkdirs()
}
workingDir = runDir
useJUnitPlatform()
}
withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = "17"
targetCompatibility = "17"
}
}
subprojects {
apply(plugin = "java")
}