37 lines
628 B
Kotlin
37 lines
628 B
Kotlin
import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
|
|
|
|
plugins {
|
|
id("org.jetbrains.kotlin.jvm")
|
|
id("org.jetbrains.intellij.platform")
|
|
}
|
|
|
|
group = "com.prepeep"
|
|
version = "1.0.3"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
intellijPlatform {
|
|
defaultRepositories()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
intellijPlatform {
|
|
intellijIdeaCommunity("2024.2.3")
|
|
pluginVerifier()
|
|
instrumentationTools()
|
|
}
|
|
}
|
|
|
|
intellijPlatform {
|
|
pluginConfiguration {
|
|
ideaVersion {
|
|
sinceBuild = "242"
|
|
untilBuild = "263.*"
|
|
}
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |