you use `id("<id>") version "<version>...
# gradle
o
you use
id("<id>") version "<version>"
to specify non-core plugins, you can find ids by looking up plugins in the portal: https://plugins.gradle.org/ for example, the kotlin plugin is
org.jetbrains.kotlin.jvm
(https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm), and you can see the syntax on the plugins portal page I linked if you switch to Kotlin DSL, you can use
kotlin("jvm") version "<version>"
as a shortcut in the plugins block