File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/test/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 83
83
val java: String by project
84
84
withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach { kotlinOptions { jvmTarget = java } }
85
85
withType< io.gitlab.arturbosch.detekt.Detekt > { jvmTarget = java }
86
- withType<Test >() { useJUnitPlatform() }
86
+ withType<Test >().configureEach { useJUnitPlatform() }
87
+ // withType<Jar> { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
87
88
}
88
89
89
90
detekt {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class OpenApiGradlePluginTest {
35
35
36
36
group = 'com.example'
37
37
version = '0.0.1-SNAPSHOT'
38
- sourceCompatibility = '11 '
38
+ sourceCompatibility = '17 '
39
39
40
40
repositories {
41
41
mavenCentral()
You can’t perform that action at this time.
0 commit comments