mirror of
https://github.com/chylex/IntelliJ-Inspection-Lens.git
synced 2025-01-04 19:42:47 +01:00
49 lines
745 B
Plaintext
49 lines
745 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.17.0"
|
|
}
|
|
|
|
group = "com.chylex.intellij.inspectionlens"
|
|
version = "1.5"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
intellij {
|
|
version.set("2023.3.3")
|
|
updateSinceUntilBuild.set(false)
|
|
|
|
plugins.add("tanvd.grazi")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
|
|
}
|
|
|
|
tasks.patchPluginXml {
|
|
sinceBuild.set("233.11361.10")
|
|
}
|
|
|
|
tasks.buildSearchableOptions {
|
|
enabled = false
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.freeCompilerArgs = listOf(
|
|
"-Xjvm-default=all"
|
|
)
|
|
}
|