-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 900 Bytes
/
build.gradle
File metadata and controls
44 lines (36 loc) · 900 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
39
40
41
42
43
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.qameta.allure:allure-gradle:2.5"
}
}
apply plugin: 'java'
apply plugin: "io.qameta.allure"
allure {
version = '2.9.0'
autoconfigure = true
aspectjweaver = true
useTestNG {
version = '2.9.0'
}
reportDir = file('build/allure-results')
}
dependencies {
testCompile 'io.rest-assured:rest-assured:3.2.0'
testCompile 'com.github.javafaker:javafaker:0.17.1'
}
repositories {
mavenCentral()
}
test {
useTestNG()
options {
systemProperties(System.getProperties())
systemProperties['allure.link.issue.pattern'] = 'https://example.org/issue_tracker/{}'
systemProperties['allure.link.backlog_tracker.pattern'] = 'https://example.org/backlog_tracker/{}'
}
}