Skip to content

Commit e4c3f79

Browse files
committed
fix(build): 修改插件版本号配置以支持动态解析
- 将 fooyay-resolver-convention 插件版本号从固定改为 "+" - 注释 site.addzero.gradle.plugin.modules-buddy 插件版本号配置,使用 "+" - 删除无效注释和空白行,优化配置文件结构 - 保持并发执行设置和特性预览配置不变
1 parent c943023 commit e4c3f79

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

settings.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ pluginManagement {
99
}
1010

1111
plugins {
12-
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
12+
id("org.gradle.toolchains.foojay-resolver-convention") version "+"
1313
// See https://central.sonatype.com/artifact/io.gitee.zjarlin.auto-modules/io.gitee.zjarlin.auto-modules.gradle.plugin
14-
// id("io.gitee.zjarlin.auto-modules") version "0.0.616"
14+
//id("site.addzero.gradle.plugin.modules-buddy") version "+"
1515
}
1616

1717
// Disable parallel project execution when dependencyUpdates tasks are requested because the plugin cannot run in parallel.
@@ -21,8 +21,6 @@ if (startParameter.taskNames.any { it.contains("dependencyUpdates", ignoreCase =
2121
startParameter.isParallelProjectExecutionEnabled = false
2222
}
2323

24-
// autoModules { excludeModules("build-logic") }
25-
2624
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2725

2826
rootProject.name = "compose-server"

0 commit comments

Comments
 (0)