```Execution failed for task ':jvmProcessResources...
# javascript
m
Copy code
Execution failed for task ':jvmProcessResources'.
> Entry server_style.css is a duplicate but no duplicate handling strategy has been set. Please refer to <https://docs.gradle.org/7.1/dsl/org.gradle.api.tasks.Copy.html#org.gradle.api.tasks.Copy:duplicatesStrategy> for details.
I also get this while trying to run my project, it says server_style.css is duplicate but it's only in jvmMain/resources and not in jsMain/resources or commonMain/resources
r
Make sure you're using the latest Kotlin (1.5.30) and Gradle (7.2) versions, I've seen that earlier but I think it was fixed. I was running into it when using
withJava()
in a multiplatform jvm project, so if it still shows up see if you can work around that.