-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
142 lines (121 loc) · 4.76 KB
/
build.gradle.kts
File metadata and controls
142 lines (121 loc) · 4.76 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
fun gradleProperties(key: String) = providers.gradleProperty(key)
group = gradleProperties("courseGroup").get()
version = gradleProperties("courseVersion").get()
plugins {
java
val kotlinVersion = "1.9.21"
id("org.jetbrains.kotlin.jvm") version kotlinVersion apply false
id("io.gitlab.arturbosch.detekt") version "1.23.1"
id("org.jetbrains.compose")
}
val detektReportMerge by tasks.registering(io.gitlab.arturbosch.detekt.report.ReportMergeTask::class) {
output.set(rootProject.buildDir.resolve("reports/detekt/merge.sarif"))
}
allprojects {
repositories {
mavenCentral()
maven {
// To be able to use the Kotlin test framework for the tests - https://github.com/jetbrains-academy/kotlin-test-framework
url = uri("https://packages.jetbrains.team/maven/p/kotlin-test-framework/kotlin-test-framework")
}
google()
maven("https://jitpack.io")
}
}
tasks {
wrapper {
gradleVersion = gradleProperties("gradleVersion").get()
}
}
// Configure dependencies for all gradle modules
configure(subprojects) {
apply<io.gitlab.arturbosch.detekt.DetektPlugin>()
apply {
plugin("java")
plugin("kotlin")
}
// Configure detekt
configure<io.gitlab.arturbosch.detekt.extensions.DetektExtension> {
config = rootProject.files("detekt.yml")
buildUponDefaultConfig = true
debug = true
}
tasks.withType<io.gitlab.arturbosch.detekt.Detekt> {
finalizedBy(detektReportMerge)
reports.sarif.required.set(true)
detektReportMerge.get().input.from(sarifReportFile)
}
tasks.getByPath("detekt").onlyIf { project.hasProperty("runDetekt") }
// Include dependencies
dependencies {
// By default, only the core module is included
implementation("org.jetbrains.academy.test.system:core:2.0.5")
testImplementation("junit:junit:4.13.2")
implementation("junit:junit:4.13.2")
val junitJupiterVersion = "5.9.0"
implementation("org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion")
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion")
implementation("org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion")
implementation("org.junit.platform:junit-platform-launcher:1.10.2")
runtimeOnly("org.junit.platform:junit-platform-console:1.9.0")
val detektVersion = "1.22.0"
implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detektVersion")
implementation("io.gitlab.arturbosch.detekt:detekt-formatting:$detektVersion")
}
val jvmVersion = gradleProperties("jvmVersion").get()
tasks {
withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = jvmVersion
}
}
withType<JavaCompile> {
sourceCompatibility = jvmVersion
targetCompatibility = jvmVersion
}
// This part is necessary for the JetBrains Academy plugin
withType<Test> {
useJUnitPlatform()
outputs.upToDateWhen { false }
addTestListener(object : TestListener {
override fun beforeSuite(suite: TestDescriptor) {}
override fun beforeTest(testDescriptor: TestDescriptor) {}
override fun afterTest(testDescriptor: TestDescriptor, result: TestResult) {
if (result.resultType == TestResult.ResultType.FAILURE) {
val message = result.exception?.message ?: "Wrong answer"
val lines = message.split("\n")
println("#educational_plugin FAILED + ${lines[0]}")
lines.subList(1, lines.size).forEach { line ->
println("#educational_plugin$line")
}
// we need this to separate output of different tests
println()
}
}
override fun afterSuite(suite: TestDescriptor, result: TestResult) {}
})
}
}
}
// We have to store tests inside test folder directly
configure(subprojects) {
apply {
plugin("org.jetbrains.compose")
}
sourceSets {
getByName("main").java.srcDirs("src")
getByName("test").java.srcDirs("test")
}
dependencies {
implementation(compose.desktop.currentOs)
implementation("org.jetbrains.compose.material3:material3-desktop:1.6.0")
implementation("com.github.LavishSwarnkar:faangX-KTP-Apps:1.51")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
}