-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 1.18 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
plugins {
id 'java'
id 'application'
id 'io.qameta.allure' version '2.8.1'
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
def allureVersion = "2.13.8",
junitVersion = "5.7.0",
ownerVersion = "1.0.12",
restAssuredVersion = "4.3.3",
javaFakerVersion = "1.0.2"
allure {
version = "${allureVersion}"
autoconfigure = true
aspectjweaver = true
useJUnit5 {
version = "${allureVersion}"
}
}
dependencies {
testImplementation(
"com.google.code.gson:gson:2.8.6",
"com.github.javafaker:javafaker:$javaFakerVersion",
"io.qameta.allure:allure-selenide:$allureVersion",
"io.rest-assured:rest-assured:$restAssuredVersion",
"io.qameta.allure:allure-rest-assured:$allureVersion",
"org.junit.jupiter:junit-jupiter-api:$junitVersion",
"org.junit.jupiter:junit-jupiter-params:$junitVersion",
"org.aeonbits.owner:owner:$ownerVersion")
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
}
tasks.withType(Test) {
systemProperties += System.properties
}
test {
useJUnitPlatform()
systemProperties(System.getProperties())
}