src/integrationTest/resources/searchable-options/build.gradle.kts [3:27]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type") val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version") version = "1.0.0" plugins { id("org.jetbrains.kotlin.jvm") id("org.jetbrains.intellij.platform") } kotlin { jvmToolchain(17) } repositories { mavenCentral() intellijPlatform { defaultRepositories() } } dependencies { intellijPlatform { create(intellijPlatformTypeProperty, intellijPlatformVersionProperty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/integrationTest/resources/settings-not-so-strict-resolution-management/build.gradle.kts [4:29]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type") val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version") version = "1.0.0" plugins { id("org.jetbrains.kotlin.jvm") id("org.jetbrains.intellij.platform") } kotlin { jvmToolchain(17) } repositories { mavenCentral() intellijPlatform { //jetbrainsRuntime() defaultRepositories() } } dependencies { intellijPlatform { create(intellijPlatformTypeProperty, intellijPlatformVersionProperty) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -