xref: /aosp_15_r20/external/ksp/examples/playground/test-processor/build.gradle.kts (revision af87fb4bb8e3042070d2a054e912924f599b22b7)
1 val kspVersion: String by project
2 
<lambda>null3 plugins {
4     kotlin("jvm")
5 }
6 
7 group = "com.example"
8 version = "1.0-SNAPSHOT"
9 
<lambda>null10 dependencies {
11     implementation(kotlin("stdlib"))
12     implementation("com.squareup:javapoet:1.12.1")
13     implementation("com.google.devtools.ksp:symbol-processing-api:$kspVersion")
14 }
15 
<lambda>null16 sourceSets.main {
17     java.srcDirs("src/main/kotlin")
18 }
19 
20