-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
52 lines (40 loc) · 1.21 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
plugins {
kotlin("jvm") version "1.9.25"
}
tasks.withType(Wrapper::class) {
gradleVersion = "8.10.2"
}
group = "com.example.junit5"
version = "1.0-SNAPSHOT"
val allureVersion = "2.29.0"
val aspectJVersion = "1.9.22"
val kotlinVersion = "1.9.25"
kotlin {
jvmToolchain(17)
}
val agent: Configuration by configurations.creating {
isCanBeConsumed = true
isCanBeResolved = true
}
tasks.test {
ignoreFailures = true
useJUnitPlatform()
jvmArgs = listOf(
"-javaagent:${agent.singleFile}"
)
}
dependencies {
agent("org.aspectj:aspectjweaver:$aspectJVersion")
testImplementation(platform("org.jetbrains.kotlin:kotlin-bom:$kotlinVersion"))
testImplementation("org.jetbrains.kotlin:kotlin-stdlib")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
testImplementation(platform("io.qameta.allure:allure-bom:$allureVersion"))
testImplementation("io.qameta.allure:allure-junit5")
testImplementation(platform("org.junit:junit-bom:5.11.3"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.slf4j:slf4j-simple:2.0.16")
}
repositories {
mavenCentral()
}