aboutsummaryrefslogtreecommitdiff
path: root/kotlin-plugin/build.gradle.kts
blob: 9cf4d362941729c93cfed03a557b83932ccd2095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
plugins {
	kotlin("jvm")
	id("com.google.devtools.ksp")
	`maven-publish`
}

dependencies {
	compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable")
	implementation("com.google.devtools.ksp:symbol-processing-api:1.9.23-1.0.20")
	implementation(project(":annotations"))

	ksp("dev.zacsweers.autoservice:auto-service-ksp:1.2.0")
	compileOnly("com.google.auto.service:auto-service-annotations:1.0.1")

	testImplementation(kotlin("test-junit5"))
	testImplementation("org.jetbrains.kotlin:kotlin-compiler-embeddable")
	testImplementation("dev.zacsweers.kctfork:core:0.5.1")
	testImplementation("dev.zacsweers.kctfork:ksp:0.5.1")
}