[DeprecatedJvmWithJavaPresetDiagnostic | ERROR] Deprecated 'jvmWithJava' Preset
The 'jvmWithJava' preset is deprecated and will be removed soon.
Please use an ordinary JVM target with Java support:
```
kotlin {
    jvm {
        withJava()
    }
}
```
After this change, please move the Java sources to the Kotlin source set directories.
For example, if the JVM target is given the default name 'jvm':
 * instead of 'src/main/java', use 'src/jvmMain/java'
 * instead of 'src/test/java', use 'src/jvmTest/java'
Please migrate to the new JVM target with Java support.
----
[KMPJavaPluginsIncompatibilityDiagnostic | ERROR] 'java' Plugin Incompatible with 'org.jetbrains.kotlin.multiplatform' Plugin
'java' Gradle plugin is not compatible with 'org.jetbrains.kotlin.multiplatform' plugin.
Consider adding a new subproject with 'java' plugin where the KMP project is added as a dependency.