• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

<lambda>null1 pluginManagement {
2     val kotlinVersion: String by settings
3     val kspVersion: String by settings
4     val testRepo: String by settings
5     val agpVersion: String by settings
6     plugins {
7         id("com.google.devtools.ksp") version kspVersion apply false
8         kotlin("jvm") version kotlinVersion apply false
9         kotlin("android") version kotlinVersion apply false
10         id("com.android.application") version agpVersion apply false
11     }
12     repositories {
13         maven(testRepo)
14         gradlePluginPortal()
15         google()
16         mavenCentral()
17         maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
18     }
19 }
20 
21 rootProject.name = "playground"
22 
23 include(":workload")
24 include(":test-processor")
25