| Yigit Boyar | 2c1dce8 | 2023-08-15 16:29:06 +0000 | [diff] [blame] | 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 | |||||
| 5 | def srcFile = buildscript.getSourceFile() | ||||
| 6 | includeBuild new File(srcFile.parentFile, "playground-plugin").canonicalPath | ||||
| 7 | repositories { | ||||
| 8 | mavenCentral() | ||||
| 9 | google() | ||||
| 10 | gradlePluginPortal() | ||||
| 11 | } | ||||