Skip to content

Commit

Permalink
Target IntelliJ 2024.2 final
Browse files Browse the repository at this point in the history
  • Loading branch information
gharrma committed Aug 8, 2024
1 parent 2a829f8 commit 4eb4d75
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("java")
id("org.jetbrains.intellij.platform").version("2.0.0-beta7")
id("org.jetbrains.intellij.platform").version("2.0.0")
id("org.jetbrains.kotlin.jvm").version("1.9.24")
}

Expand Down Expand Up @@ -53,7 +53,7 @@ intellijPlatform {
pluginConfiguration {
version = project.version.toString()
ideaVersion {
sinceBuild = "242" // Should be tested occasionally (see runPluginVerifier).
sinceBuild = "242" // Should be tested occasionally (see pluginVerification).
untilBuild = provider { null } // So that we can leave the until-build blank.
}
changeNotes = """
Expand All @@ -69,9 +69,8 @@ intellijPlatform {

// Note: the plugin verifier does not run by default in a normal build.
// Instead, you have to run it explicitly with: ./gradlew verifyPlugin
verifyPlugin {
pluginVerification {
ides.recommended()
downloadDirectory = layout.buildDirectory.dir("pluginVerifier/ides")

val suppressedFailures = listOf(
VerifyPluginTask.FailureLevel.EXPERIMENTAL_API_USAGES, // TODO: VfsStatTreeTable uses JBTreeTable.
Expand Down Expand Up @@ -145,7 +144,7 @@ repositories {
dependencies {
intellijPlatform {
// See task 'printProductsReleases' for available IntelliJ versions.
intellijIdeaCommunity("242.18071.24") // IntelliJ 2024.2 EAP 6.
intellijIdeaCommunity("2024.2")
pluginVerifier()
instrumentationTools()
testFramework(TestFrameworkType.Platform)
Expand Down

0 comments on commit 4eb4d75

Please sign in to comment.