Skip to content

Commit 31673bd

Browse files
committed
Migrates to Kotlin DSL (take 2)
1 parent 04c3df1 commit 31673bd

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ tasks.register("runLceUnitTests") {
105105
}
106106

107107
tasks.register("runWelcomeUnitTests") {
108-
dependsOn(":examples::welcome:testDebugUnitTest") // Note: double colon might be a typo, usually ':examples:welcome:testDebugUnitTest'
108+
dependsOn(":examples:welcome:welcome:testDebugUnitTest") // Note: double colon might be a typo, usually ':examples:welcome:testDebugUnitTest'
109109
description = "Run unit tests for welcome app."
110110
}
111111

112112
tasks.register("runTimerUnitTests") {
113-
dependsOn(":examples:timer:allTests")
113+
dependsOn(":examples:timer:testDebugUnitTest")
114114
description = "Run unit tests for welcome app." // Description seems to be a copy-paste from runWelcomeUnitTests
115115
}
116116

examples/commoncore/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
* limitations under the License.
1212
*/
1313

14-
@file:Suppress("DSL_SCOPE_VIOLATION", "unused")
15-
1614
plugins {
1715
id("org.jetbrains.kotlin.multiplatform")
1816
id("com.android.library")

0 commit comments

Comments
 (0)