• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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