compose-lobsters/build.gradle.kts
Harsh Shandilya 587f40f79f
build: update Ktor and gradle-versions-plugin
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-11-11 19:51:58 +05:30

18 lines
418 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"))
}
}
plugins {
id("com.github.ben-manes.versions") version "0.36.0"
`lobsters-plugin`
}