-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
35 lines (29 loc) · 1.09 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
plugins {
id 'java'
id 'io.qameta.allure' version '2.11.2'
}
group = 'io.github.tahanima'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.aeonbits.owner:owner:1.0.12'
implementation 'io.rest-assured:rest-assured:5.4.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
implementation 'com.univocity:univocity-parsers:2.9.1'
implementation 'org.slf4j:slf4j-api:2.0.13'
implementation 'io.qameta.allure:allure-junit-platform:2.27.0'
implementation 'com.github.automatedowl:allure-environment-writer:1.0.0'
compileOnly 'org.projectlombok:lombok:1.18.32'
testCompileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation platform('org.junit:junit-bom:5.10.2')
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testImplementation 'org.slf4j:slf4j-simple:2.0.13'
testImplementation 'ch.qos.logback:logback-classic:1.5.6'
}
test {
useJUnitPlatform()
}