-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.24 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
54
55
56
57
58
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'io.qameta.allure'
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0'
classpath 'io.qameta.allure:allure-gradle:2.4'
}
}
allure {
version = '2.4.1'
autoconfigure = true
aspectjweaver = true
aspectjVersion = '1.8.10'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.1.0'
compile 'org.assertj:assertj-core:3.9.0'
compile 'com.codeborne:selenide:4.10.01'
compile 'io.qameta.allure:allure-junit5:2.6.0'
compile 'io.qameta.allure:allure-selenide:2.0-BETA22'
compile 'org.junit.jupiter:junit-jupiter-params:5.1.0'
compile 'org.junit.platform:junit-platform-suite-api:1.1.0'
compile 'org.junit.platform:junit-platform-runner:1.1.0'
}
junitPlatform {
filters {
engines {
}
tags {
}
packages {
}
includeClassNamePatterns '.*Tests'
}
enableStandardTestTask true
}
task wrapper(type: Wrapper) {
gradleVersion '4.5.1'
}