Initial commit

This commit is contained in:
2025-06-04 23:42:03 +08:00
commit 6e10240402
48 changed files with 2300 additions and 0 deletions

30
settings.gradle.kts Normal file
View File

@@ -0,0 +1,30 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "1.0.4"
id("com.highcapable.sweetproperty") version "1.0.5"
}
sweetDependency {
isEnableVerboseMode = false
}
sweetProperty {
global {
sourcesCode {
className = rootProject.name
includeKeys(
"^project\\..*\$".toRegex(),
"^gradle\\..*\$".toRegex()
)
isEnableRestrictedAccess = true
}
}
rootProject { all { isEnable = false } }
}
rootProject.name = "Adbrowser"
include(":frontend", ":backend")