Last active
May 25, 2020 19:17
-
-
Save lamvann/016f3fd6644a83fcb235d959579fcaab to your computer and use it in GitHub Desktop.
Extension function to apply the kotlin plugin to a project
This file contains 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
fun Project.setupAsKotlinLibrary() { | |
println("\tKotlin library") | |
apply(plugin = "kotlin") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment