File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
src/test/kotlin/com/sksamuel/kotest/example/allure Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
1
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
+ import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
2
3
3
4
plugins {
4
5
kotlin(" jvm" ) version " 2.2.10"
5
6
id(" io.qameta.allure" ) version " 2.10.0"
6
7
}
7
8
8
- group = " com.example "
9
+ group = " io.kotest.examples "
9
10
version = " 0.0.1-SNAPSHOT"
10
11
11
12
java {
17
18
kotlin {
18
19
compilerOptions {
19
20
jvmTarget = JvmTarget .JVM_21
20
- languageVersion = org.jetbrains.kotlin.gradle.dsl. KotlinVersion .KOTLIN_2_2
21
- apiVersion = org.jetbrains.kotlin.gradle.dsl. KotlinVersion .KOTLIN_2_2
21
+ languageVersion = KotlinVersion .KOTLIN_2_2
22
+ apiVersion = KotlinVersion .KOTLIN_2_2
22
23
}
23
24
}
24
25
Original file line number Diff line number Diff line change 1
1
package com.sksamuel.kotest.example.allure
2
2
3
3
import io.kotest.core.config.AbstractProjectConfig
4
+ import io.kotest.core.extensions.Extension
4
5
import io.kotest.extensions.allure.AllureTestReporter
5
6
6
7
class MyConfig : AbstractProjectConfig () {
7
- override fun listeners () = listOf (AllureTestReporter ())
8
+ override val extensions : List < Extension > = listOf (AllureTestReporter ())
8
9
}
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ plugins {
9
9
10
10
apply (plugin = " io.spring.dependency-management" )
11
11
12
- repositories {
13
- mavenCentral()
14
- }
15
-
16
12
group = " io.kotest.examples"
17
13
version = " 0.0.1-SNAPSHOT"
18
14
Original file line number Diff line number Diff line change 1
1
rootProject.name = " kotest-examples-spring-webflux"
2
+
3
+ dependencyResolutionManagement {
4
+ repositories {
5
+ mavenCentral()
6
+ }
7
+ }
You can’t perform that action at this time.
0 commit comments