-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (44 loc) · 1.47 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.freefair.lombok" version "5.3.0"
id'io.qameta.allure'version'2.8.1'
}
group 'ru.netology'
version '1.0-SNAPSHOT'
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "http://dl.bintray.com/epam/reportportal" }
}
allure{
autoconfigure=true
version='2.13.8'
useJUnit5{
version='2.13.8'
}
}
sourceCompatibility = 1.8
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.1'
testImplementation 'com.github.javafaker:javafaker:1.0.2'
testImplementation 'com.codeborne:selenide:5.16.2'
testImplementation'io.qameta.allure:allure-selenide:2.13.8'
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.30'
implementation 'com.epam.reportportal:agent-java-junit5:5.0.0'
implementation 'com.epam.reportportal:logger-java-logback:5.0.2'
implementation 'ch.qos.logback:logback-classic:1.2.3'
implementation 'com.epam.reportportal:logger-java-log4j:5.0.2'
compileOnly 'log4j:log4j:1.2.17'
implementation 'org.apache.logging.log4j:log4j-api:2.13.3'
implementation 'org.apache.logging.log4j:log4j-core:2.13.3'
}
test {
testLogging.showStandardStreams = true
useJUnitPlatform()
systemProperty 'selenide.headless', System.getProperty('selenide.headless')
systemProperty 'selenide.browser', 'chrome'
systemProperty 'junit.jupiter.extensions.autodetection.enabled', true
}