We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d33c9f5 commit 2f0d994Copy full SHA for 2f0d994
1 file changed
build.gradle.kts
@@ -16,16 +16,15 @@ dependencies {
16
}
17
18
intellij {
19
- // 使用本地已安装的 IntelliJ IDEA,避免远程下载
20
- localPath.set("/Applications/IntelliJ IDEA.app/Contents")
21
- // type.set("IC")
+ // CI 环境使用远程下载指定平台(避免依赖本机 IDEA 路径)
+ type.set("IC")
+ version.set("2024.1")
22
downloadSources.set(false)
23
plugins.set(listOf("com.intellij.java"))
24
- // 不自动写入 since/until 到 plugin.xml,由我们手动控制
25
updateSinceUntilBuild.set(false)
26
- // 添加配置以解决Gradle兼容性问题
27
pluginName.set("zy-language-support")
28
- // version.set("2024.1.3")
+ // 支持 2024 和 2025 年版本
+ sameSinceUntilBuild.set(false)
29
30
31
tasks {
@@ -43,7 +42,7 @@ tasks {
43
42
44
patchPluginXml {
45
sinceBuild.set("241")
46
- untilBuild.set("241.*")
+ untilBuild.set("252.*")
47
48
49
runIde {
0 commit comments