src/integrationTest/resources/jar-manifest-file/build.gradle.kts (26 lines of code) (raw):
val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type")
val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version")
plugins {
id("org.jetbrains.kotlin.jvm")
id("org.jetbrains.intellij.platform")
}
version = "1.0.0"
kotlin {
jvmToolchain(17)
}
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
dependencies {
intellijPlatform {
create(intellijPlatformTypeProperty, intellijPlatformVersionProperty)
instrumentationTools()
}
}
intellijPlatform {
buildSearchableOptions = false
instrumentCode = false
}