Skip to content

Commit

Permalink
bump com.codeborne:selenide from 6.17.1 to 7.3.3 (via #1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jul 8, 2024
1 parent 9dee444 commit 515752a
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions allure-selenide/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure Selenide Integration"

val selenideVersion = "6.17.1"
val selenideVersion = "7.3.3"

dependencies {
api(project(":allure-java-commons"))
Expand All @@ -15,14 +15,23 @@ dependencies {
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}

tasks.jar {
manifest {
attributes(mapOf(
"Automatic-Module-Name" to "io.qameta.allure.selenide"
))
tasks {
compileJava {
options.release.set(17)
}
compileTestJava {
options.release.set(17)
}
jar {
manifest {
attributes(
mapOf(
"Automatic-Module-Name" to "io.qameta.allure.selenide"
)
)
}
}
test {
useJUnitPlatform()
}
}

tasks.test {
useJUnitPlatform()
}

0 comments on commit 515752a

Please sign in to comment.