Signed-off-by: namankhurmi <naman.khurmi@navi.com> Signed-off-by: kishan kumar <kishan.kumar@navi.com> Co-authored-by: Sanjay P <sanjay.p@navi.com> Co-authored-by: Venkat Praneeth Reddy <venkat.praneeth@navi.com> Co-authored-by: Naman Khurmi <naman.khurmi@navi.com> Co-authored-by: Ankit Yadav <ankit.yadav@navi.com> Co-authored-by: Hitesh Kumar <hitesh.kumar@navi.com> Co-authored-by: nikhil kumar <nikhil.kumar@navi.com> Co-authored-by: Abhinav Gupta <abhinav.g@navi.com> Co-authored-by: Kishan Kumar <kishan.kumar@navi.com> Co-authored-by: Soumya Ranjan Patra <soumya.ranjan@navi.com> Co-authored-by: Girish Suragani <girish.suragani@navi.com> Co-authored-by: Aparna Vadlamani <aparna.vadlamani@navi.com> Co-authored-by: Siddiboina Susai <siddiboina.susai@navi.com> Co-authored-by: Ayushman Sharma <ayushman.sharma@navi.com> Co-authored-by: Kamalesh Garnayak <kamalesh.garnayak@navi.com>
18 lines
323 B
Groovy
18 lines
323 B
Groovy
plugins {
|
|
alias libs.plugins.kotlin.jvm
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir "${buildDir.absolutePath}/generated/ksp/"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.ksp.symbolProcessingApi
|
|
implementation libs.squareup.kotlinpoet
|
|
implementation libs.squareup.kotlinpoet.ksp
|
|
}
|