Commit 515752a 1 parent 9dee444 commit 515752a Copy full SHA for 515752a
File tree 1 file changed +19
-10
lines changed
1 file changed +19
-10
lines changed Original file line number Diff line number Diff line change 1
1
description = " Allure Selenide Integration"
2
2
3
- val selenideVersion = " 6.17.1 "
3
+ val selenideVersion = " 7.3.3 "
4
4
5
5
dependencies {
6
6
api(project(" :allure-java-commons" ))
@@ -15,14 +15,23 @@ dependencies {
15
15
testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
16
16
}
17
17
18
- tasks.jar {
19
- manifest {
20
- attributes(mapOf (
21
- " Automatic-Module-Name" to " io.qameta.allure.selenide"
22
- ))
18
+ tasks {
19
+ compileJava {
20
+ options.release.set(17 )
21
+ }
22
+ compileTestJava {
23
+ options.release.set(17 )
24
+ }
25
+ jar {
26
+ manifest {
27
+ attributes(
28
+ mapOf (
29
+ " Automatic-Module-Name" to " io.qameta.allure.selenide"
30
+ )
31
+ )
32
+ }
33
+ }
34
+ test {
35
+ useJUnitPlatform()
23
36
}
24
- }
25
-
26
- tasks.test {
27
- useJUnitPlatform()
28
37
}
You can’t perform that action at this time.
0 commit comments