Skip to content

Commit 3cce19c

Browse files
committed
Refactor: Use placeholders for Compose dependencies in test
Updated the `macLayeredIcon` test project to use `COMPOSE_VERSION_PLACEHOLDER` for Compose dependency versions. This makes the test configuration more flexible and easier to maintain.
1 parent 27e4a6b commit 3cce19c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • gradle-plugins/compose/src/test/test-projects/application/macLayeredIcon

gradle-plugins/compose/src/test/test-projects/application/macLayeredIcon/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ kotlin {
3333
sourceSets {
3434
commonMain {
3535
dependencies {
36-
implementation(compose.runtime)
37-
implementation(compose.material)
36+
implementation("org.jetbrains.compose.runtime:runtime:COMPOSE_VERSION_PLACEHOLDER")
37+
implementation("org.jetbrains.compose.material:material:COMPOSE_VERSION_PLACEHOLDER")
3838
}
3939
}
4040

0 commit comments

Comments
 (0)