eygraber
08/28/2023, 2:24 PMPlugin [id: 'org.jetbrains.compose'] was not found in any of the following sources:
eygraber
08/28/2023, 2:26 PMpluginManagement
from settings
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("androidx.*")
}
}
gradlePluginPortal()
mavenCentral()
maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev|https://maven.pkg.jetbrains.space/public/p/compose/dev>") {
content {
includeGroupByRegex("org\\.jetbrains\\.compose.*")
}
}
}
}
Alexander Maryanovsky
08/28/2023, 2:35 PMbuildscript{
repositories {
google()
gradlePluginPortal()
maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
}
}
plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.compose") version "1.5.0"
}
eygraber
08/28/2023, 2:49 PMAlexander Maryanovsky
08/28/2023, 2:50 PMeygraber
08/28/2023, 2:54 PMAlexander Maryanovsky
08/28/2023, 2:55 PMAlexander Maryanovsky
08/28/2023, 2:55 PMeygraber
08/28/2023, 2:56 PMAlexander Maryanovsky
08/28/2023, 2:57 PMeygraber
08/28/2023, 2:59 PMinclusions are extensive, meaning that anything which doesn't match the includes will be considered missing from the repository.
From Gradle docs
Alexander Maryanovsky
08/28/2023, 3:00 PMeygraber
08/28/2023, 3:00 PMeygraber
08/28/2023, 3:07 PMIf includes are added, then if the module doesn't match any of the includes, it's excluded
I thought maybe this one but it doesn't fully explain the behavior. In any case 1.5.0 is present in Space so I'm not sure why I'm having this issue 🤔
eygraber
08/28/2023, 3:11 PM