We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb7e5f commit fc9d215Copy full SHA for fc9d215
1 file changed
build.gradle.kts
@@ -20,6 +20,8 @@ intellij {
20
type.set("IC")
21
downloadSources.set(false)
22
plugins.set(listOf("com.intellij.java"))
23
+ // 不自动写入 since/until 到 plugin.xml,由我们手动控制
24
+ updateSinceUntilBuild.set(false)
25
}
26
27
tasks {
@@ -35,7 +37,6 @@ tasks {
35
37
36
38
39
patchPluginXml {
- sinceBuild.set("233")
- untilBuild.set("241.*")
40
+ sinceBuild.set("241")
41
42
0 commit comments