Browse Source

Configure repositories for all modules (#2510)

pull/2515/head v1.3.0-alpha01-dev869
Alexey Tsvetkov 2 years ago committed by GitHub
parent
commit
297eeacfc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      components/build.gradle.kts

9
components/build.gradle.kts

@ -3,15 +3,16 @@ plugins {
id("com.android.library") apply false
}
subprojects {
version = findProperty("deploy.version") ?: property("compose.version")!!
allprojects {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
mavenLocal()
}
}
subprojects {
version = findProperty("deploy.version") ?: property("compose.version")!!
plugins.withId("java") {
configureIfExists<JavaPluginExtension> {

Loading…
Cancel
Save