forked from jreznot/KeymapNationalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
41 lines (34 loc) · 837 Bytes
/
build.gradle.kts
File metadata and controls
41 lines (34 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.9.20"
id("org.jetbrains.intellij") version "1.17.0"
}
group = "com.dekonoplyov"
version = "0.3.0"
repositories {
mavenCentral()
}
intellij {
version.set("2024.1.4")
type.set("IC") // Target IDE Platform
plugins.set(listOf())
}
tasks {
// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "17"
targetCompatibility = "17"
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "17"
}
patchPluginXml {
sinceBuild.set("241")
}
publishPlugin {
token.set(System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken"))
}
}
dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:1.9.20")
}