is there a list of kotlin plugins modules available anywhere?
g
gildor
09/09/2019, 8:14 AM
Modules?
b
Bernhard
09/09/2019, 8:45 AM
Copy code
/**
* Applies the given Kotlin plugin [module].
*
* For example: `plugins { kotlin("jvm") version "1.3.41" }`
*
* Visit the [plugin portal](<https://plugins.gradle.org/search?term=org.jetbrains.kotlin>) to see the list of available plugins.
*
* @param module simple name of the Kotlin Gradle plugin module, for example "jvm", "android", "kapt", "plugin.allopen" etc...
*/
fun PluginDependenciesSpec.kotlin(module: String): PluginDependencySpec =
id("org.jetbrains.kotlin.$module")