mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 00:57:02 +05:30
19 lines
474 B
Kotlin
19 lines
474 B
Kotlin
buildscript {
|
|
apply(from = "buildSrc/buildDependencies.gradle")
|
|
val build: Map<Any, Any> by extra
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath(build.getValue("androidGradlePlugin"))
|
|
classpath(build.getValue("daggerGradlePlugin"))
|
|
classpath(build.getValue("kotlinGradlePlugin"))
|
|
classpath(build.getValue("sqldelightGradlePlugin"))
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.github.ben-manes.versions") version "0.36.0"
|
|
`lobsters-plugin`
|
|
}
|