Colton Idle
01/16/2022, 11:25 PMplugins {
id("java-library")
id("org.jetbrains.kotlin.jvm")
}
but then I went and looked at an old project and it had a kotlin only lib module that looked like this:
plugins {
id("java-library")
id("kotlin")
}
So is there any diff between the second lines in both of these?Vampire
01/17/2022, 12:07 AMkotlin("jvm")
?Javier
01/17/2022, 1:28 AMjava-library
is not necessaryVampire
01/17/2022, 1:36 AMColton Idle
01/17/2022, 4:50 AMFleshgrinder
01/17/2022, 7:07 AMkotlin("jvm")
is more concise.