-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (36 loc) · 1.29 KB
/
build.gradle
File metadata and controls
45 lines (36 loc) · 1.29 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
plugins {
id 'java'
}
group = 'dev.serverest'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
repositories {
mavenCentral()
}
def cucumberVersion = '7.21.1'
dependencies {
testCompileOnly 'org.projectlombok:lombok:1.18.36'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
testImplementation "io.cucumber:cucumber-java:${cucumberVersion}"
testImplementation "io.cucumber:cucumber-junit-platform-engine:${cucumberVersion}"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
testImplementation 'org.junit.platform:junit-platform-suite:1.11.4'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.0'
testImplementation 'com.github.javafaker:javafaker:1.0.2'
testImplementation "io.cucumber:cucumber-picocontainer:${cucumberVersion}"
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
testRuntimeOnly 'org.slf4j:slf4j-simple:2.0.16'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
testLogging {
events 'passed', 'failed', 'skipped'
exceptionFormat 'short'
showStandardStreams = true
}
}