mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 22:37:03 +05:30
38 lines
828 B
Kotlin
38 lines
828 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
kotlinDslPluginOptions {
|
|
experimentalWarning.set(false)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("lobsters") {
|
|
id = "lobsters-plugin"
|
|
implementationClass = "LobstersPlugin"
|
|
}
|
|
register("coreLibraryDesugaring") {
|
|
id = "core-library-desugaring"
|
|
implementationClass = "CoreLibraryDesugaringPlugin"
|
|
}
|
|
register("versioning") {
|
|
id = "versioning-plugin"
|
|
implementationClass = "VersioningPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(Plugins.androidGradlePlugin)
|
|
implementation(Plugins.androidGradlePlugin_lintModel)
|
|
implementation(Plugins.daggerGradlePlugin)
|
|
implementation(Plugins.jsemver)
|
|
implementation(Plugins.kotlinGradlePlugin)
|
|
implementation(Plugins.sqldelightGradlePlugin)
|
|
}
|