forked from google/ksp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
29 lines (25 loc) · 778 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
29 lines (25 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
rootProject.name = "ksp"
pluginManagement {
val buildKotlinVersion: String by settings
val buildKspVersion: String by settings
plugins {
kotlin("jvm") version buildKotlinVersion apply false
id("com.google.devtools.ksp") version buildKspVersion apply false
}
repositories {
gradlePluginPortal()
maven("https://redirector.kotlinlang.org/maven/bootstrap/")
maven("https://www.jetbrains.com/intellij-repository/snapshots")
google()
}
}
include("api")
include("gradle-plugin")
include("common-deps")
include("common-util")
include("test-utils")
include("symbol-processing")
include("integration-tests")
include("kotlin-analysis-api")
include("symbol-processing-aa-embeddable")
include("cmdline-parser-gen")