mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 19:07:02 +05:30
38 lines
758 B
Kotlin
38 lines
758 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.android)
|
|
implementation(Plugins.hilt)
|
|
implementation(Plugins.jsemver)
|
|
implementation(Plugins.lintModel)
|
|
implementation(Plugins.kotlin)
|
|
implementation(Plugins.sqldelight)
|
|
}
|