Skip to content

Commit adaebde

Browse files
committed
Clean up a bit
1 parent 68bf45f commit adaebde

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ val testJavaVersion = typedProp<String>("test.java.version")?.let {
4040
allprojects {
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

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
2222
ksp.useKSP2=false
2323

24+
# FIXME Remove after Dokka 2.0 Gradle plugin is stable
2425
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
26+
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true

services/build.gradle.kts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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"

tests/codegen/event-stream/build.gradle.kts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ import aws.sdk.kotlin.gradle.codegen.smithyKotlinProjectionSrcDir
88
import aws.sdk.kotlin.tests.codegen.CodegenTest
99
import 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-
1611
description = "AWS SDK for Kotlin's event stream codegen test suite"
1712

1813
val tests = listOf(

0 commit comments

Comments
 (0)