We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8b5d5 commit c3f6433Copy full SHA for c3f6433
2 files changed
build.gradle.kts
@@ -83,7 +83,8 @@ tasks{
83
val java: String by project
84
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach { kotlinOptions { jvmTarget = java } }
85
withType<io.gitlab.arturbosch.detekt.Detekt> { jvmTarget = java }
86
- withType<Test>() { useJUnitPlatform() }
+ withType<Test>().configureEach { useJUnitPlatform() }
87
+// withType<Jar> { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
88
}
89
90
detekt {
src/test/kotlin/org/springdoc/openapi/gradle/plugin/OpenApiGradlePluginTest.kt
@@ -35,7 +35,7 @@ class OpenApiGradlePluginTest {
35
36
group = 'com.example'
37
version = '0.0.1-SNAPSHOT'
38
- sourceCompatibility = '11'
+ sourceCompatibility = '17'
39
40
repositories {
41
mavenCentral()
0 commit comments