blob: 7013dc1111c51fe7e1bdc7790792b462e71b3605 [file] [log] [blame]
Yigit Boyar2c1dce82023-08-15 16:29:06 +00001// 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 gradlePluginPortal()
11}