We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3adc9 commit bb1821bCopy full SHA for bb1821b
1 file changed
allure-selenide/build.gradle.kts
@@ -2,12 +2,13 @@ description = "Allure Selenide Integration"
2
3
val agent: Configuration by configurations.creating
4
5
-val selenideVersion = "5.24.4"
+val selenideVersion = "6.0.2"
6
7
dependencies {
8
agent("org.aspectj:aspectjweaver")
9
api(project(":allure-java-commons"))
10
- implementation("com.codeborne:selenide:$selenideVersion")
+ compileOnly("com.codeborne:selenide:$selenideVersion")
11
+ testImplementation("com.codeborne:selenide:$selenideVersion")
12
testImplementation("org.mockito:mockito-core")
13
testImplementation("org.assertj:assertj-core")
14
testImplementation("org.junit.jupiter:junit-jupiter-api")
0 commit comments