mirror of
https://github.com/chylex/Rider-VCS-Group-By-Project.git
synced 2025-04-17 21:15:44 +02:00
40 lines
625 B
Plaintext
40 lines
625 B
Plaintext
@file:Suppress("ConvertLambdaToReference")
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.8.0"
|
|
id("org.jetbrains.intellij") version "1.15.0"
|
|
}
|
|
|
|
group = "com.chylex.intellij.rider.vcsgroupbyproject"
|
|
version = "1.0.3"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
intellij {
|
|
type.set("RD")
|
|
version.set("2023.2-SNAPSHOT")
|
|
updateSinceUntilBuild.set(false)
|
|
}
|
|
|
|
tasks.patchPluginXml {
|
|
sinceBuild.set("232")
|
|
}
|
|
|
|
tasks.buildSearchableOptions {
|
|
enabled = false
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.freeCompilerArgs = listOf(
|
|
"-Xjvm-default=all"
|
|
)
|
|
}
|