Files
JetBrains_intellij-platform…/build.gradle.kts

18 lines
551 B
Kotlin
Raw Normal View History

2024-04-16 23:54:27 +02:00
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.intellij.platform")
id("org.jetbrains.changelog")
}
2023-04-04 17:17:47 +02:00
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")
2024-06-14 21:20:18 +02:00
testFramework(TestFrameworkType.Platform)
}
}