DEADSOFTWARE

Add module code gen
[cavedroid.git] / dagger-multibind-ksp / build.gradle
index ea5375f54bb767ca6a0bdb8ae02a724616c61e6f..e73405db1b01954a17aaf51af3c697a8cec1bf5d 100644 (file)
@@ -3,10 +3,12 @@ plugins {
     id 'com.google.devtools.ksp' version "$kspVersion"
 }
 
-repositories {
-    mavenCentral()
-}
-
 kotlin {
     jvmToolchain(17)
-}
\ No newline at end of file
+}
+
+dependencies {
+    implementation project(':dagger-multibind-annotations')
+    implementation "com.squareup:kotlinpoet-ksp:$kotlinpoetKspVersion"
+    implementation "com.google.devtools.ksp:symbol-processing-api:$kspVersion"
+}