forked from HPI-Information-Systems-Teaching/DBS-I-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
79 lines (65 loc) · 1.78 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
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
import de.hpi.dbs2.submitting.PackSubmissionTask
plugins {
kotlin("jvm") version "1.8.22"
java
application
id("com.github.ben-manes.versions") version "0.47.0"
id("org.jetbrains.dokka") version "1.8.20"
idea
}
group = "de.hpi.dbs1"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
implementation("org.postgresql:postgresql:42.6.0")
implementation("com.github.ajalt.clikt:clikt:3.5.3")
testImplementation(kotlin("test-junit5"))
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.3")
testImplementation("io.kotest:kotest-assertions-core:5.6.2")
}
application {
mainClass.set("$group.MainKt")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
tasks {
withType<JavaExec> {
enableAssertions = true
systemProperty("java.util.logging.config.file", "logging.properties")
}
test {
enableAssertions = true
testLogging {
showStandardStreams = true
}
useJUnitPlatform()
}
withType<KotlinJvmCompile> {
kotlinOptions {
apiVersion = "1.8"
languageVersion = "1.8"
}
}
register<PackSubmissionTask>("packSubmission")
withType<DependencyUpdatesTask> {
val unstable = Regex("^.*?(?:alpha|beta|unstable|ea|rc|M\\d).*\$", RegexOption.IGNORE_CASE)
rejectVersionIf {
candidate.version.matches(unstable)
}
}
}
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}