Roeniss Moon
11/23/2021, 3:04 PMkotlin-gradle-plugin
? https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin
I can’t find sort of documentation of it….Rob Elliot
11/23/2021, 3:09 PMRoeniss Moon
11/23/2021, 3:13 PMRoeniss Moon
11/23/2021, 3:15 PMkotlin scripting plugin: applied in the non-supported environment (error received: Cannot query the value of task ‘:compileQuerydslKotlin’ property ‘sourceSetName$kotlin_gradle_plugin’ because it has no value available.)I’m facing this issue. I can’t build my gradle (spring) project after I added querydsl dependencies…
tapchicoma
11/23/2021, 3:42 PMRob Elliot
11/23/2021, 3:48 PMkotlin-gradle-plugin
jar (it’s not really a library as such…) is the Gradle Plugin that allows Gradle to support Kotlin. It’s what gets applied to your project when you put this in build.kts:
plugins {
kotlin("jvm") version "1.6.0"
}
The page I linked to is the documentation on how to use it in a gradle script.
I know nothing about querydsl
or how you got a compileQuerydslKotlin
task.Roeniss Moon
11/23/2021, 4:37 PMPaul Woitaschek
11/23/2021, 10:14 PMRoeniss Moon
11/24/2021, 6:01 AM