forked from eroshenkoam/docker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (30 loc) · 812 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
plugins {
id 'java'
id 'io.qameta.allure' version '2.8.1'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
allure {
autoconfigure = true
version = '2.13.3'
useJUnit5 {
version = "2.13.3"
}
}
dependencies {
compile('com.codeborne:selenide:5.11.1')
compile('org.aeonbits.owner:owner-java8:1.0.12')
compile('io.qameta.allure:allure-java-commons:2.13.3')
compile('org.seleniumhq.selenium:selenium-java:3.141.59')
compile("com.fasterxml.jackson.core:jackson-databind:2.11.0")
testCompile("org.junit.jupiter:junit-jupiter-api:5.3.0")
testCompile("org.junit.jupiter:junit-jupiter-engine:5.3.0")
testCompile("org.junit.jupiter:junit-jupiter-params:5.3.0")
}