-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle.kts
58 lines (46 loc) · 1.34 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
plugins {
java
}
tasks.withType(Wrapper::class) {
gradleVersion = "8.5"
}
group = "io.eroshenkoam"
version = version
val allureVersion = "2.24.0"
val aspectJVersion = "1.9.20.1"
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}
tasks.withType(JavaCompile::class) {
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
val agent: Configuration by configurations.creating {
isCanBeConsumed = true
isCanBeResolved = true
}
tasks.test {
ignoreFailures = true
useJUnitPlatform()
jvmArgs = listOf(
"-javaagent:${agent.singleFile}"
)
systemProperty("junit.jupiter.execution.parallel.enabled", "true")
systemProperty("junit.jupiter.execution.parallel.config.strategy", "dynamic")
}
dependencies {
agent("org.aspectj:aspectjweaver:$aspectJVersion")
implementation(platform("io.qameta.allure:allure-bom:$allureVersion"))
implementation("io.qameta.allure:allure-junit5")
implementation(platform("org.junit:junit-bom:5.10.1"))
implementation("org.junit.jupiter:junit-jupiter-api")
implementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
implementation("commons-io:commons-io:2.15.1")
testImplementation("org.slf4j:slf4j-simple:2.0.9")
}
repositories {
mavenCentral()
}