-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (26 loc) · 1.05 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
plugins {
id 'java'
id("io.freefair.lombok") version "8.0.1"
}
repositories {
mavenCentral()
}
dependencies {
//for dependency injection (DI)
testImplementation 'io.cucumber:cucumber-picocontainer:7.11.2'
//java-based implementation of the Cucumber framework
testImplementation 'io.cucumber:cucumber-java:7.11.2'
//test engine that allows Cucumber tests to be executed in the JUnit 5
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.11.2'
//allows you to group related test classes and run them as a suite
testImplementation 'org.junit.platform:junit-platform-suite:1.9.2'
//latest version of the JUnit testing framework
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
//library for testing REST APIs
testImplementation 'io.rest-assured:rest-assured:5.3.0'
}
test {
useJUnitPlatform()
// Work around. Gradle does not include enough information to disambiguate between different examples and scenarios.
systemProperty('cucumber.junit-platform.naming-strategy', 'long')
}