[PlatformSourceSetConventionUsedWithCustomTargetName | WARNING] Source Set used with custom target name
Accessed 'source set jvmMain', but jvm target used a custom name 'desktop' (expected 'jvm'):

Replace:
```
kotlin {
    jvm("desktop") /* <- custom name used */
}
```

With:
```
kotlin {
    jvm()
}
```
Please use the jvm() target name.
----
[PlatformSourceSetConventionUsedWithCustomTargetName | WARNING] Source Set used with custom target name
Accessed 'source set jvmTest', but jvm target used a custom name 'desktop' (expected 'jvm'):

Replace:
```
kotlin {
    jvm("desktop") /* <- custom name used */
}
```

With:
```
kotlin {
    jvm()
}
```
Please use the jvm() target name.
----
[UnusedSourceSetsWarning | WARNING] Unused Kotlin Source Sets
The following Kotlin source sets were configured but not added to any Kotlin compilation:
 * jvmMain
 * jvmTest
You can add a source set to a target's compilation by connecting it with the compilation's default source set using 'dependsOn'.
See https://kotl.in/connecting-source-sets