aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/output-deps/settings.gradle.kts
blob: 668c5a878a91b181fc43ebc92559debefafcf767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pluginManagement {
    val kspVersion: String by settings
    val kotlinVersion: String by settings
    val testRepo: String by settings
    plugins {
        id("com.google.devtools.ksp") version kspVersion
        kotlin("jvm") version kotlinVersion
    }
    repositories {
        maven(testRepo)
        gradlePluginPortal()
        maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
    }
}

rootProject.name = "incremental-test"

include(":workload")
include(":test-processor")