Browse Source

Update build.gradle.kts (#3425)

pull/3441/head
Oleksandr Karpovich 1 year ago committed by GitHub
parent
commit
77a070ae45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      compose/integrations/composable-test-cases/build.gradle.kts

6
compose/integrations/composable-test-cases/build.gradle.kts

@ -1,3 +1,4 @@
import org.jetbrains.kotlin.gradle.dsl.KotlinCompile
import org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile import org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile
group "com.example" group "com.example"
@ -8,6 +9,7 @@ allprojects {
google() google()
mavenCentral() mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") 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() // mavenLocal()
} }
@ -28,6 +30,10 @@ allprojects {
"-Xklib-enable-signature-clash-checks=false", "-Xklib-enable-signature-clash-checks=false",
) )
} }
tasks.withType<KotlinCompile<*>>().configureEach {
kotlinOptions.freeCompilerArgs += "-Xpartial-linkage=disable"
}
} }
disableYarnLockMismatchReport() disableYarnLockMismatchReport()
} }

Loading…
Cancel
Save