-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (71 loc) · 2.97 KB
/
build.gradle
File metadata and controls
80 lines (71 loc) · 2.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
plugins {
id 'java'
}
group '77rip'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenLocal()
maven { url "https://jitpack.io" }
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
systemProperty 'junit.jupiter.extensions.autodetection.enabled', true
}
dependencies {
implementation 'org.seleniumhq.selenium:selenium-java:3.141.59'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'io.github.bonigarcia:webdrivermanager:3.6.0'
implementation 'org.reflections:reflections:0.9.11'
implementation(group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1')
implementation(group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.1')
implementation(group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.11.1')
implementation(group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.1.1')
implementation group: 'org.springframework', name: 'spring-context', version: '5.1.8.RELEASE'
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-remote-driver', version: '3.141.59'
implementation group: 'org.testcontainers', name: 'testcontainers', version: '1.11.4'
implementation group: 'org.testcontainers', name: 'selenium', version: '1.11.4'
implementation group: 'io.qameta.allure', name: 'allure-junit5', version: '2.12.1'
implementation group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.0'
implementation group: 'io.rest-assured', name: 'rest-assured', version: '3.0.7'
implementation group: 'org.json', name: 'json', version: '20090211'
implementation group: 'io.appium', name: 'java-client', version: '7.0.0'
implementation group: 'com.codeborne', name: 'selenide', version: '5.2.4'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testImplementation group: 'io.qameta.allure', name: 'allure-junit5', version: '2.12.1'
testImplementation group: 'org.springframework', name: 'spring-test', version: '5.1.8.RELEASE'
}
task testMobile(type: Test) {
useJUnitPlatform()
include 'mobile/*.*'
description = "Runs Automation Tests"
ignoreFailures = true
testLogging.exceptionFormat = 'full'
testLogging {
events "passed", "skipped", "failed"
}
}
task testApi(type: Test) {
useJUnitPlatform()
include 'apiTests/customer/*.*'
description = "Runs Automation Tests"
ignoreFailures = true
testLogging.exceptionFormat = 'full'
testLogging {
events "passed", "skipped", "failed"
}
}
task testWebUi(type: Test) {
useJUnitPlatform()
include 'webUI/*.*'
description = "Runs Automation Tests"
ignoreFailures = true
testLogging.exceptionFormat = 'full'
testLogging {
events "passed", "skipped", "failed"
}
}