-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (34 loc) · 1007 Bytes
/
build.gradle
File metadata and controls
38 lines (34 loc) · 1007 Bytes
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
plugins {
id 'java'
id 'io.qameta.allure' version '2.11.2'
id 'io.freefair.lombok' version '8.3'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
google()
}
dependencies {
implementation(
'io.rest-assured:rest-assured:5.3.1',
'com.fasterxml.jackson.core:jackson-databind:2.15.2',
'com.fasterxml.jackson.core:jackson-core:2.15.2',
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2',
'org.hamcrest:hamcrest:2.2',
'io.qameta.allure:allure-testng:2.24.0',
'io.qameta.allure:allure-rest-assured:2.24.0'
)
testImplementation(
'org.testng:testng:7.8.0'
)
}
test {
systemProperties System.getProperties()
systemProperties.remove("java.endorsed.dirs")
scanForTestClasses = false
useTestNG() {
useDefaultListeners = true
}
testLogging.showStandardStreams = true
}