Skip to content

Commit

Permalink
Update build.gradle.kts (#3425)
Browse files Browse the repository at this point in the history
  • Loading branch information
eymar authored Jul 31, 2023
1 parent cb468ad commit 77a070a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions compose/integrations/composable-test-cases/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.jetbrains.kotlin.gradle.dsl.KotlinCompile
import org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile

group "com.example"
Expand All @@ -8,6 +9,7 @@ allprojects {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/") // to test with kotlin dev builds
// mavenLocal()
}

Expand All @@ -28,6 +30,10 @@ allprojects {
"-Xklib-enable-signature-clash-checks=false",
)
}

tasks.withType<KotlinCompile<*>>().configureEach {
kotlinOptions.freeCompilerArgs += "-Xpartial-linkage=disable"
}
}
disableYarnLockMismatchReport()
}
Expand Down

0 comments on commit 77a070a

Please sign in to comment.