-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (27 loc) · 708 Bytes
/
build.gradle
File metadata and controls
34 lines (27 loc) · 708 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '2.3.0' apply false
}
group = 'lmirabal'
version = '1.0-SNAPSHOT'
subprojects {
apply plugin: 'org.jetbrains.kotlin.jvm'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
testImplementation 'com.natpryce:hamkrest:1.8.0.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
}
test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(25)
}
}
wrapper {
gradleVersion = '9.2.1'
distributionType = Wrapper.DistributionType.ALL
}