-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (38 loc) · 1.2 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
plugins {
id 'java'
id 'eclipse'
id 'idea'
id "io.qameta.allure" version "2.9.6"
}
repositories {
jcenter()
mavenCentral()
}
allure {
autoconfigure = true
}
dependencies {
implementation 'org.seleniumhq.selenium:selenium-api:4.0.0'
implementation 'org.seleniumhq.selenium:selenium-server:3.141.59'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:4.0.0'
implementation 'org.seleniumhq.selenium:selenium-remote-driver:4.0.0'
implementation 'org.seleniumhq.selenium:selenium-support:4.0.0'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:4.0.0'
implementation 'io.github.bonigarcia:webdrivermanager:5.0.3'
implementation group: 'org.testng', name: 'testng', version: '7.4.0'
implementation group: 'io.qameta.allure', name: 'allure-testng', version: '2.13.3'
runtimeOnly group: 'org.aspectj', name: 'aspectjweaver', version: '1.6.10'
}
testReportDirName = "${buildDir}/test-output"
test {
useTestNG() {
useDefaultListeners = true
suites 'src/main/resources/testng.xml'
}
testLogging {
events "PASSED", "FAILED", "SKIPPED"
exceptionFormat = 'full'
}
ignoreFailures = true
reports.html.enabled = false
}