Files
JetBrains_intellij-platform…/build.gradle.kts
2026-05-04 10:28:24 +02:00

18 lines
551 B
Kotlin

import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.intellij.platform")
id("org.jetbrains.changelog")
}
dependencies {
testImplementation("junit:junit:4.13.2")
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
intellijPlatform {
intellijIdea("2025.2.6.2")
testFramework(TestFrameworkType.Platform)
}
}