35 lines
923 B
Kotlin
35 lines
923 B
Kotlin
rootProject.name = "Overseerr"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
includeGroupByRegex("android.*")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
includeGroupByRegex("android.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
|
|
maven("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
|
|
}
|
|
}
|
|
include(":composeApp")
|
|
|