2024-04-16 23:54:27 +02:00
|
|
|
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
|
2020-05-05 08:29:16 +02:00
|
|
|
|
|
|
|
|
plugins {
|
2026-04-13 20:49:44 +02:00
|
|
|
id("org.jetbrains.kotlin.jvm")
|
|
|
|
|
id("org.jetbrains.intellij.platform")
|
|
|
|
|
id("org.jetbrains.changelog")
|
2020-05-05 08:29:16 +02:00
|
|
|
}
|
|
|
|
|
|
2023-04-04 17:17:47 +02:00
|
|
|
dependencies {
|
2026-04-13 16:59:16 +02:00
|
|
|
testImplementation("junit:junit:4.13.2")
|
2022-03-16 21:44:30 +01:00
|
|
|
|
2024-02-20 22:49:22 +01:00
|
|
|
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
|
|
|
|
|
intellijPlatform {
|
2026-05-04 10:28:24 +02:00
|
|
|
intellijIdea("2025.2.6.2")
|
2024-06-14 21:20:18 +02:00
|
|
|
testFramework(TestFrameworkType.Platform)
|
2024-02-27 13:53:36 +01:00
|
|
|
}
|
2024-02-20 22:49:22 +01:00
|
|
|
}
|