[KotlinCompilationSourceDeprecation | ERROR] `KotlinCompilation.source(KotlinSourceSet)` Method Deprecated
`KotlinCompilation.source(KotlinSourceSet)` method is deprecated
and will be removed in Kotlin 2.3
Please use `KotlinCompilation.defaultSourceSet` instead.
See https://kotl.in/compilation-source-deprecation for details.
----
[MultipleSourceSetRootsInCompilation | WARNING] Missing 'dependsOn' in Source Sets
Kotlin Source Sets: 'jvmCustom', 'customMain'
are included to 'custom' compilation of 'jvm' target.
However, they have no common source set root between them.

Please remove these kotlin source sets and include their source directories to the compilation's default source set.

    kotlin.sourceSets["jvmCustom"].kotlin.srcDir() // <-- pass sources directories here

Or, if the solution above is not applicable, specify `dependsOn` edges between these source sets so that there are no multiple roots.
Please remove these kotlin source sets and include their source directories to the compilation's default source set.
See https://kotl.in/connecting-source-sets for more details.