i'm trying to test some of the latest dev builds i...
# eap
j
i'm trying to test some of the latest dev builds in order to verify the fixes prior to the first eap. but Gradle just hangs when it reaches a kotlin task. the logs indicate it starts a Kotlin daemon and connects but then it just sits there after getting the options. is anyone testing dev builds with a successful setup? haven't had luck with in-process either.
a
Can you please file an issue at http://kotl.in/issue with attached gradle logs, daemon logs and a sample project if possible? Thank you.
n
i had success with
1.3.60-dev-2303
Copy code
plugins {
    kotlin("jvm") version "1.3.60-dev-2303"
    id("kotlinx-serialization") version "1.3.60-dev-2303"
    application
}
Copy code
pluginManagement {
    resolutionStrategy {
        eachPlugin {
            if (requested.id.id == "kotlinx-serialization") {
                useModule("org.jetbrains.kotlin:kotlin-serialization:${requested.version}")
            }
        }
    }
    repositories {
        gradlePluginPortal()
        maven(url = "<https://dl.bintray.com/kotlin/kotlin-dev/>") {
            name = "kotlin dev"
        }
        jcenter()
    }
}
using gradle wrapper version
5.6
j
I'm on 5.6.2 and just tried that dev build which did the same thing. Will file.
🙏 1