Skip to content

Instantly share code, notes, and snippets.

@quickbirdstudios-eng
Created September 6, 2019 07:14
Show Gist options
  • Save quickbirdstudios-eng/3653a230eba4e1d9ecfd6745ffcd0622 to your computer and use it in GitHub Desktop.
Save quickbirdstudios-eng/3653a230eba4e1d9ecfd6745ffcd0622 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