File tree Expand file tree Collapse file tree 4 files changed +3
-12
lines changed
tests/codegen/event-stream Expand file tree Collapse file tree 4 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ val testJavaVersion = typedProp<String>("test.java.version")?.let {
4040allprojects {
4141 if (rootProject.typedProp<Boolean >(" kotlinWarningsAsErrors" ) == true ) {
4242 tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
43- kotlinOptions .allWarningsAsErrors = true
43+ compilerOptions .allWarningsAsErrors = true
4444 }
4545 }
4646
Original file line number Diff line number Diff line change @@ -21,4 +21,6 @@ kotlinx.atomicfu.enableNativeIrTransformation=false
2121# https://github.com/google/dagger/issues/4181 / https://github.com/google/ksp/issues/1678
2222ksp.useKSP2 =false
2323
24+ # FIXME Remove after Dokka 2.0 Gradle plugin is stable
2425org.jetbrains.dokka.experimental.gradle.pluginMode =V2Enabled
26+ org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn =true
Original file line number Diff line number Diff line change @@ -77,12 +77,6 @@ subprojects {
7777 }
7878 }
7979
80- kotlinOptions {
81- // Enable coroutine runTests in 1.6.10
82- // NOTE: may be removed after coroutines-test runTests becomes stable
83- freeCompilerArgs = freeCompilerArgs + " -opt-in=kotlin.RequiresOptIn"
84- }
85-
8680 tasks.register<Test >(" e2eTest" ) {
8781 description = " Run e2e service tests"
8882 group = " verification"
Original file line number Diff line number Diff line change @@ -8,11 +8,6 @@ import aws.sdk.kotlin.gradle.codegen.smithyKotlinProjectionSrcDir
88import aws.sdk.kotlin.tests.codegen.CodegenTest
99import aws.sdk.kotlin.tests.codegen.Model
1010
11- plugins {
12- id(libs.plugins.kotlin.jvm.get().pluginId)
13- alias(libs.plugins.aws.kotlin.repo.tools.smithybuild)
14- }
15-
1611description = " AWS SDK for Kotlin's event stream codegen test suite"
1712
1813val tests = listOf (
You can’t perform that action at this time.
0 commit comments