diff --git a/build.gradle b/build.gradle index d0d7382..8649a86 100644 --- a/build.gradle +++ b/build.gradle @@ -47,6 +47,10 @@ dependencies { } implementation 'org.slf4j:slf4j-api:2.0.7' + testImplementation ("org.jbehave:jbehave-gherkin:${project.jbehave_version}") { + exclude group: 'junit' + exclude group: 'org.junit.vintage' + } testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.3' testImplementation 'org.aspectj:aspectjweaver:1.9.19' testImplementation 'org.hamcrest:hamcrest-core:2.2' @@ -59,10 +63,6 @@ dependencies { testImplementation "org.junit.jupiter:junit-jupiter-engine:${project.junit5_version}" testImplementation "org.junit.platform:junit-platform-launcher:${project.junit5_launcher_version}" testImplementation 'org.apache.commons:commons-io:1.3.2' - testImplementation ("org.jbehave:jbehave-gherkin:${project.jbehave_version}") { - exclude group: 'junit' - exclude group: 'org.junit.vintage' - } testImplementation 'com.squareup.okhttp3:okhttp:4.12.0' }