Files
intellijai/build.gradle.kts
hgranthorner cb5a1d9555 initial commit
2026-08-04 10:12:15 -04:00

22 lines
757 B
Kotlin

import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.changelog")
id("org.jetbrains.intellij.platform")
}
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html
dependencies {
testImplementation(libs.junit)
// 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.3.5")
testFramework(TestFrameworkType.Platform)
// Add plugin dependencies for compilation here, for example:
// bundledPlugin("com.intellij.java")
}
}