-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (48 loc) · 1.43 KB
/
build.gradle
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
plugins {
id 'java'
}
wrapper {
gradleVersion = "8.10.2"
}
repositories {
mavenCentral()
}
group = "com.example.cucumberjvm"
version = "1.0-SNAPSHOT"
def allureVersion = "2.29.0"
def cucumberVersion = "7.20.1"
def aspectJVersion = "1.9.22"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
configurations {
agent {
canBeResolved = true
canBeConsumed = true
}
}
dependencies {
agent "org.aspectj:aspectjweaver:$aspectJVersion"
testImplementation platform("io.cucumber:cucumber-bom:$cucumberVersion")
testImplementation "io.cucumber:cucumber-java"
testImplementation "io.cucumber:cucumber-junit-platform-engine"
testImplementation platform("io.qameta.allure:allure-bom:$allureVersion")
testImplementation "io.qameta.allure:allure-cucumber7-jvm"
testImplementation "io.qameta.allure:allure-junit-platform"
testImplementation platform("org.junit:junit-bom:5.11.3")
testImplementation "org.junit.platform:junit-platform-suite"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.slf4j:slf4j-simple:2.0.16"
}
test {
ignoreFailures = true
useJUnitPlatform()
jvmArgs = [ "-javaagent:${configurations.agent.singleFile}" ]
}