From e61fed2467d8568332e71787e72c1c6e618dd05f Mon Sep 17 00:00:00 2001 From: Alex Plate Date: Mon, 29 Jul 2024 16:51:25 +0200 Subject: [PATCH] Revert "Use installer in case of the snapshot dependency" This reverts commit f5e125759fbf805fee14afa0acf671b37ffa2a83. --- build.gradle.kts | 6 +----- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0c1cbbed43..51dff05734 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -111,14 +111,10 @@ dependencies { compileOnly("org.jetbrains:annotations:24.1.0") intellijPlatform { - // Snapshots don't use installers - // https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html#target-versions-installers - val useInstaller = ideaVersion.contains("EAP-SNAPSHOT") - // Note that it is also possible to use local("...") to compile against a locally installed IDE // E.g. local("/Users/{user}/Applications/IntelliJ IDEA Ultimate.app") // Or something like: intellijIdeaUltimate(ideaVersion) - create(ideaType, ideaVersion, useInstaller) + create(ideaType, ideaVersion) pluginVerifier() zipSigner() diff --git a/gradle.properties b/gradle.properties index 57f6f4e9f5..9455cd7586 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ # https://data.services.jetbrains.com/products?code=IC # Maven releases are here: https://www.jetbrains.com/intellij-repository/releases # And snapshots: https://www.jetbrains.com/intellij-repository/snapshots -ideaVersion=LATEST-EAP-SNAPSHOT +ideaVersion=2024.1.2 # Values for type: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension-type ideaType=IC instrumentPluginCode=true