build: convert to Gradle Kotlin DSL

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-11-06 17:28:26 +05:30
parent 9839bf4014
commit 1e2fef884f
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
19 changed files with 514 additions and 230 deletions

18
build.gradle.kts Normal file
View file

@ -0,0 +1,18 @@
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.34.0"
`lobsters-plugin`
}