-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (38 loc) · 1.01 KB
/
build.gradle
File metadata and controls
47 lines (38 loc) · 1.01 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
plugins {
id "idea"
id "org.jetbrains.kotlin.jvm" version "1.9.25"
id "org.jlleitschuh.gradle.ktlint" version "12.1.0"
id "com.adarshr.test-logger" version "3.2.0"
}
[compileKotlin, compileTestKotlin]*.kotlinOptions*.jvmTarget = "17"
ext {
kotlinVersion = "1.9.25"
junitVersion = "5.7.0"
assertjVersion = "3.19.0"
}
ktlint {
version = "1.1.1"
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testImplementation "org.assertj:assertj-core:$assertjVersion"
}
test {
useJUnitPlatform()
}
testlogger {
theme "mocha"
}