forked from alxjusto/TestAutomationWorkshopAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (45 loc) · 1.76 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.qameta.allure' version '2.8.1'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation group: 'io.rest-assured', name: 'rest-assured', version: '4.4.0'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.4'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
implementation group: 'io.qameta.allure', name: 'allure-java-commons', version: '2.13.8'
implementation group: 'io.qameta.allure', name: 'allure-rest-assured', version: '2.13.10'
implementation group: 'io.qameta.allure', name: 'allure-junit5', version: '2.13.6'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
implementation group: 'org.freemarker', name: 'freemarker', version: '2.3.30'
implementation group: 'org.apache.tika', name: 'tika-core', version: '1.24.1'
implementation group: 'org.jooq', name: 'joor-java-8', version: '0.9.13'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
}
configurations {
testCompile
}
test {
useJUnitPlatform()
}
allure {
configuration = "testImplementation"
//PUT_HERE_YOUR_PATH: you must replace for your own path
resultsDir = file('PUT_HERE_YOUR_PATH/build/allure-results')
reportDir = file('build/allure-results')
autoconfigure = false
aspectjweaver = true
version = '2.8.1'
useJUnit5 {
version = '2.13.6'
}
}