style: optimizing code style

This commit is contained in:
2025-09-23 14:36:46 +08:00
parent 464a15d440
commit e25c66166e
3 changed files with 20 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
@@ -6,13 +7,16 @@ pluginManagement {
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "1.0.4"
id("com.highcapable.sweetproperty") version "1.0.8"
}
sweetDependency {
isEnableVerboseMode = false
}
sweetProperty {
global {
sourcesCode {
@@ -23,8 +27,15 @@ sweetProperty {
isEnableRestrictedAccess = true
}
}
rootProject { all { isEnable = false } }
rootProject {
all {
isEnable = false
}
}
}
rootProject.name = "KavaRef"
include(":kavaref-core", ":kavaref-extension", "kavaref-android-stub")
include(":samples:kavaref-demo")