5190a6cd37
Bumps org.gradle.toolchains.foojay-resolver-convention from 0.9.0 to 0.10.0. --- updated-dependencies: - dependency-name: org.gradle.toolchains.foojay-resolver-convention dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
983 B
Kotlin
37 lines
983 B
Kotlin
rootProject.name = "Overseerr"
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
includeGroupByRegex("android.*")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
includeGroupByRegex("android.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
|
|
}
|
|
}
|
|
include(":composeApp")
|