Skip to content

Instantly share code, notes, and snippets.

@LizzieStudeneer
Created September 9, 2019 08:23
Show Gist options
  • Save LizzieStudeneer/d1370e77aa331632ceb3246dcc1bd4ee to your computer and use it in GitHub Desktop.
Save LizzieStudeneer/d1370e77aa331632ceb3246dcc1bd4ee to your computer and use it in GitHub Desktop.
plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
/* Example Dependency */
/* Depend on the android gradle plugin, since we want to access it in our plugin */
implementation("com.android.tools.build:gradle:3.5.0")
/* Example Dependency */
/* Depend on the kotlin plugin, since we want to access it in our plugin */
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50")
/* Depend on the default Gradle API's since we want to build a custom plugin */
implementation(gradleApi())
implementation(localGroovy())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment