mirror of
https://github.com/HighCapable/moshi-companion.git
synced 2026-02-04 12:17:10 +08:00
44 lines
784 B
Kotlin
44 lines
784 B
Kotlin
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.highcapable.gropify") version "1.0.1"
|
|
}
|
|
|
|
gropify {
|
|
global {
|
|
android {
|
|
includeKeys(
|
|
"^project\\..*\$".toRegex(),
|
|
"^gradle\\..*\$".toRegex()
|
|
)
|
|
isRestrictedAccessEnabled = true
|
|
}
|
|
}
|
|
|
|
rootProject {
|
|
common {
|
|
isEnabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "moshi-companion"
|
|
|
|
include(":samples:app")
|
|
include(":companion-api", ":companion-codegen") |