Alexander Ioffe
08/22/2025, 12:54 AMplugins {
...
alias(libs.plugins.kotest)
id("com.google.devtools.ksp") version "2.2.0-2.0.2"
}
Instead of this:
plugins {
...
id("com.google.devtools.ksp") version "2.2.0-2.0.2"
alias(libs.plugins.kotest)
}
This happens:
An exception occurred applying plugin request [id: 'io.kotest', version: '6.0.0']
> Failed to apply plugin 'io.kotest'.
> KSP neither found in root project nor exoquery-runner-core, please add 'com.google.devtools.ksp' to the project's plugins
Alexander Ioffe
08/22/2025, 12:55 AMsam
08/22/2025, 5:14 AMAlexander Ioffe
08/22/2025, 3:30 PMExoQuery
├── build-logic
├── exoquery-engine (tacked-on via includeBuild)
├── exoquery-plugin-gradle (tacked-on via includeBuild)
├── exoquery-plugin-kotlin (tacked-on via includeBuild)
├── exoquery-runner-android
├── exoquery-runner-core
├── exoquery-runner-jdbc <-- Kotest+KSP here
├── exoquery-runner-native
└── testing <-- Kotest+KSP here
I never had KSP on the base-level and I don't know if my unique project structure has anything to do with it.Alexander Ioffe
08/22/2025, 3:41 PMtesting
project and in exoquery-runner-jdbc
.sam
08/22/2025, 6:46 PM