rider/build.gradle.kts (27 lines of code) (raw):

plugins { alias(libs.plugins.kotlin) id("org.jetbrains.intellij.platform.module") } kotlin { jvmToolchain(21) } repositories { mavenCentral() intellijPlatform { defaultRepositories() jetbrainsRuntime() } } dependencies { intellijPlatform { rider(providers.gradleProperty("platformVersion")) { useInstaller = false useCache = true } jetbrainsRuntime() } implementation(project(":core")) } intellijPlatform { instrumentCode = false }