Still same issue:
# kapt
a
Still same issue:
my category-impl build have a api dependency:
Copy code
plugins {
    kotlin("jvm")
    id("myproject.java-conventions")
}

group = "com.example"
version = "0.0.1"

repositories {
    mavenCentral()
}

dependencies {
    implementation(project(":modules:backend-api:category:category-api"))
    implementation(project(":modules:shared"))

}

tasks.test {
    useJUnitPlatform()
}
kotlin {
    jvmToolchain(11)
}
IDE see no issues but gradle cant build:
Copy code
Execution failed for task ':modules:backend-api:category:category-impl:kaptKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptWithoutKotlincTask$KaptExecutionWorkAction
   > java.lang.reflect.InvocationTargetException (no error message)
changing
Copy code
kapt("org.mapstruct:mapstruct-processor:$mapStructVersion")
to
Copy code
annotationProcessor ("org.mapstruct:mapstruct-processor:$mapStructVersion")
fixed it
at least it looks like thaat