Skip to content

Commit 9a819ed

Browse files
committed
build: simplify Gradle configuration
1 parent 8875c93 commit 9a819ed

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

build.gradle.kts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repositories {
2929

3030
dependencies {
3131
intellijPlatform {
32-
create(type = stringProperty("platformType"), version = stringProperty("platformVersion"))
32+
intellijIdea(version = stringProperty("platformVersion"))
3333

3434
bundledModule("intellij.platform.vcs.dvcs")
3535
bundledModule("intellij.platform.vcs.dvcs.impl")
@@ -67,7 +67,6 @@ intellijPlatform {
6767

6868
ideaVersion {
6969
sinceBuild = stringProperty("pluginSinceBuild")
70-
untilBuild = null
7170
}
7271
}
7372

@@ -105,10 +104,10 @@ kotlin {
105104
jvmTarget = JvmTarget.JVM_21
106105
jvmDefault = JvmDefaultMode.NO_COMPATIBILITY
107106
freeCompilerArgs.addAll(
108-
"-Xno-call-assertions",
109-
"-Xno-receiver-assertions",
110-
"-Xno-param-assertions",
111-
"-Xallow-kotlin-package",
107+
"-Xno-call-assertions",
108+
"-Xno-receiver-assertions",
109+
"-Xno-param-assertions",
110+
"-Xallow-kotlin-package",
112111
)
113112

114113
optIn.add("kotlin.contracts.ExperimentalContracts")

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ org.gradle.configuration-cache = true
88
kotlin.stdlib.default.dependency = true
99

1010
# IntelliJ Platform
11-
platformType = IU
1211
platformVersion = 2025.3
1312
pluginSinceBuild = 253.17525
1413

0 commit comments

Comments
 (0)