-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (40 loc) · 1.36 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
48
49
50
51
52
53
plugins {
id 'java'
id "io.freefair.lombok" version "4.1.6"
id "io.qameta.allure" version "2.8.1"
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = 1.8
group 'io.petstore'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext {
restAssuredVersion = '4.3.1'
jUnitVersion = '5.7.0'
jacksonVersion = '2.11.3'
fakerVersion = '1.0.2'
javaOwnerVersion = '1.0.12'
}
dependencies {
compile group: 'io.rest-assured', name: 'rest-assured', version: "$restAssuredVersion"
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: "$jUnitVersion"
testCompile "org.junit.jupiter:junit-jupiter-params:$jUnitVersion"
testCompile "org.junit.jupiter:junit-jupiter-engine:$jUnitVersion"
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "$jacksonVersion"
compile group: 'com.github.javafaker', name: 'javafaker', version: "$fakerVersion"
compile group: 'io.rest-assured', name: 'json-schema-validator', version: '4.3.2'
compile group: 'org.aeonbits.owner', name: 'owner', version: "$javaOwnerVersion"
compile group: 'io.qameta.allure', name: 'allure-rest-assured', version: '2.13.7'
}
allure {
autoconfigure = true
version = "2.13.7"
useJUnit5 {
version = "2.13.7" // Latest Allure Version
}
}
test {
useJUnitPlatform()
}