Slackbot
04/29/2022, 9:40 PMChris Lee
04/29/2022, 9:43 PMChris Lee
04/29/2022, 9:44 PMplugins {
kotlin("jvm") version "1.6.20"
`maven-publish`
`java-test-fixtures`
}John Bellini
04/29/2022, 10:22 PMkotlin-dsl is set for me.
In one of my build script convention files that contains the KotlinCompile settings, I have the following:
plugins {
idea
kotlin("jvm")
kotlin("plugin.allopen")
id("helper-conventions")
id("kotlin-test-conventions")
}
No version on the jvm line in this case. Because I'm using precompiled scripts, I can't set a version... so its coming from the build.gradle.kts in my buildSrc dir?Chris Lee
04/29/2022, 10:29 PM