Initial commit

This commit is contained in:
2023-10-13 17:42:25 +08:00
commit 78217514bf
41 changed files with 2571 additions and 0 deletions

25
settings.gradle.kts Normal file
View File

@@ -0,0 +1,25 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "1.0.2"
id("com.highcapable.sweetproperty") version "1.0.3"
}
sweetDependency {
isEnableVerboseMode = false
}
sweetProperty {
global {
sourcesCode {
className = rootProject.name
isEnableRestrictedAccess = true
}
}
rootProject { all { isEnable = false } }
}
rootProject.name = "FlexiLocale"
include(":flexilocal-gradle-plugin")