-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (40 loc) · 1.05 KB
/
build.gradle
File metadata and controls
47 lines (40 loc) · 1.05 KB
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
group 'JUnit5SelenideGradle'
version '0.1'
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'ru.d10xa:gradle-allure-plugin:+'
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M3'
}
}
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'ru.d10xa.allure'
apply plugin: 'java'
apply plugin: 'idea'
compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
allure {
aspectjweaver = true
junit = true
allureResultsDir = "$buildDir/allure-results"
allureReportDir = "$buildDir/allure-report"
}
repositories {
mavenCentral()
}
dependencies {
compile ('org.junit.jupiter:junit-jupiter-api:5.0.0-M3',
'org.slf4j:slf4j-nop:1.7.22',
'ru.yandex.qatools.allure:allure-junit-adaptor:1.5.2',
'io.github.bonigarcia:webdrivermanager:1.6.0',
'org.junit.jupiter:junit-jupiter-engine:5.0.0-M3'
)
compile ('com.codeborne:selenide:4.3'){
exclude group: 'junit'
}
}