chore: update to 2024.2

This commit is contained in:
Johannes Frohnmeyer 2024-08-07 13:02:49 +02:00
parent 5b8f500ed5
commit 8f4f8c2650
Signed by: Johannes
GPG Key ID: E76429612C2929F4
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
# TODO
- keybind information
- separators
# References # References
- [the removal commit](https://github.com/JetBrains/intellij-community/commit/336265215c1ae9bf9fd7f9c23ebfabc8fc810743) - [the removal commit](https://github.com/JetBrains/intellij-community/commit/336265215c1ae9bf9fd7f9c23ebfabc8fc810743)
- [a swing menu library](https://github.com/Vitaliy-Yakovchuk/dbusmenu-swing) - [a swing menu library](https://github.com/Vitaliy-Yakovchuk/dbusmenu-swing)

View File

@ -10,7 +10,7 @@ import kotlin.io.path.deleteRecursively
plugins { plugins {
java java
kotlin("jvm") version "1.9.24" kotlin("jvm") version "1.9.24"
id("org.jetbrains.intellij.platform") version "2.0.0-beta9" id("org.jetbrains.intellij.platform") version "2.0.0"
id("jf.autoversion") version "1.6-SNAPSHOT" id("jf.autoversion") version "1.6-SNAPSHOT"
} }
@ -30,7 +30,7 @@ val extraResources by configurations.creating
dependencies { dependencies {
intellijPlatform { intellijPlatform {
intellijIdeaCommunity("242.20224.91") intellijIdeaCommunity("2024.2")
instrumentationTools() instrumentationTools()
} }
extraResources(project(mapOf("path" to ":native", "configuration" to "results"))) extraResources(project(mapOf("path" to ":native", "configuration" to "results")))