is there a list of kotlin plugins modules availabl...
# gradle
b
is there a list of kotlin plugins modules available anywhere?
g
Modules?
b
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")
currently looking for jpa support
can I just use kotlin(“plugin.jpa”) version xxx
ah nvm, there’s a url in the docs my bad
c
yup, it's exactly as you wanted it:
Copy code
kotlin("jvm")
kotlin("plugin.spring")
kotlin("plugin.jpa")
kotlin("kapt")