-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (50 loc) · 1.32 KB
/
build.gradle
File metadata and controls
63 lines (50 loc) · 1.32 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
plugins {
id 'java'
}
wrapper {
gradleVersion = '8.7'
}
repositories {
mavenCentral()
}
group = 'org.allure'
version = '1.0-SNAPSHOT'
def allureVersion = '2.29.0'
def aspectJVersion = '1.9.22'
def junitVersion = '5.11.3'
def selenideVersion = '7.5.1'
def slf4jVersion = '2.0.16'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
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 "org.slf4j:slf4j-simple:$slf4jVersion"
testImplementation platform("org.junit:junit-bom:$junitVersion")
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testImplementation "com.codeborne:selenide:$selenideVersion"
testImplementation platform("io.qameta.allure:allure-bom:$allureVersion")
testImplementation 'io.qameta.allure:allure-junit5'
testImplementation 'io.qameta.allure:allure-selenide'
}
test {
useJUnitPlatform()
jvmArgs = [ "-javaagent:${configurations.agent.singleFile}" ]
testLogging {
events "failed"
exceptionFormat "full"
}
}