-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (40 loc) · 839 Bytes
/
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
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'io.qameta.allure:allure-gradle:2.5'
}
}
plugins {
id 'java'
id "io.qameta.allure" version "2.5"
}
group 'waitrose'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.codeborne:selenide:5.0.0'
compile 'io.qameta.allure:allure-selenide:2.7.0'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}
test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
}
}
allure {
version = '2.7.0'
autoconfigure = true
aspectjweaver = true
aspectjVersion = '1.8.10'
useJUnit5 {
version = '2.7.0'
}
}