blob: 07915a765cf9067c6a3e2f720874f483d55e9f0c [file]
pluginManagement {
val kotlinVersion: String by settings
val kspVersion: String by settings
val testRepo: String by settings
val agpVersion: String by settings
plugins {
id("com.google.devtools.ksp") version kspVersion apply false
kotlin("jvm") version kotlinVersion apply false
kotlin("android") version kotlinVersion apply false
id("com.android.application") version agpVersion apply false
id("app.cash.sqldelight") version "2.0.2" apply false
}
repositories {
maven(testRepo)
gradlePluginPortal()
google()
mavenCentral()
maven("https://redirector.kotlinlang.org/maven/bootstrap/")
}
}
rootProject.name = "playground"
include(":workload")
include(":test-processor")