-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 1.12 KB
/
build.gradle
File metadata and controls
37 lines (32 loc) · 1.12 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
plugins {
id 'java'
id 'io.qameta.allure' version '2.12.0'
}
group = 'kas'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext {
lombokVersion = '1.18.36'
allureVersion = '2.29.1'
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
implementation 'org.seleniumhq.selenium:selenium-java:4.28.1'
testImplementation 'org.assertj:assertj-core:3.27.3'
implementation 'org.aeonbits.owner:owner:1.0.12'
testImplementation "io.qameta.allure:allure-junit5:${allureVersion}"
implementation "io.qameta.allure:allure-rest-assured:${allureVersion}"
}
test {
useJUnitPlatform()
systemProperties(System.getProperties())
}