buildSrc: move plugin dependencies to Dependencies.kt

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-02-01 18:42:19 +05:30
parent 2a4c58a680
commit df1db3d0ff
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
5 changed files with 36 additions and 41 deletions

View file

@ -1,18 +1,3 @@
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`