SSHRemotePlugin/build.gradle.kts

21 lines
681 B
Plaintext

import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("java")
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.intellij.platform")
id("org.jetbrains.changelog")
}
dependencies {
testImplementation("junit:junit:4.13.2")
implementation("com.github.mwiede:jsch:0.2.20")
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
intellijPlatform {
intellijIdeaCommunity("2024.1.7")
bundledPlugin("org.jetbrains.plugins.terminal")
testFramework(TestFrameworkType.Platform)
}
}