1// configures the pluginManagement section of the settings file.
2// each settings file applies this to its pluginManagement block so that we can
3// do common configuration in 1 place before plugin classpaths are loaded.
4
5def srcFile = buildscript.getSourceFile()
6includeBuild new File(srcFile.parentFile, "playground-plugin").canonicalPath
7repositories {
8    mavenCentral()
9    google {
10        content {
11            includeGroupByRegex("androidx.*")
12            includeGroupByRegex("com\\.android.*")
13            includeGroupByRegex("com\\.google.*")
14        }
15    }
16    gradlePluginPortal()
17    maven {
18        url = "https://packages.jetbrains.team/maven/p/kt/dev/"
19        content {
20            includeGroupByRegex("org\\.jetbrains\\.kotlin.*")
21        }
22    }
23}
24