Skip to content

Commit

Permalink
Configure repositories for all modules (#2510)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyTsvetkov authored Nov 28, 2022
1 parent 0d6271c commit 297eeac
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions components/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down

0 comments on commit 297eeac

Please sign in to comment.