Created
June 6, 2021 17:48
-
-
Save lukaszkalnik/a22d727481eea2921b04f29c8341dadf to your computer and use it in GitHub Desktop.
Register DependenciesPlugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
`kotlin-dsl` | |
} | |
repositories { | |
mavenCentral() | |
} | |
gradlePlugin { | |
plugins { | |
create("dependencies") { | |
id = "com.lukaszkalnik.tmdbapp.dependencies" | |
implementationClass = "com.lukaszkalnik.tmdbapp.gradle.DependenciesPlugin" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment