November 2018
Intermediate to advanced
388 pages
9h 5m
English
In Gradle, we can enable the kotlin-jpa plugin using buildscript with the kotlin-noarg artifact, as follows:
buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-noarg:$kotlin_version" } }apply plugin: "kotlin-jpa"
Alternatively, we can use the Gradle plugins section to enable the kotlin-jpa compiler plugin, as follows:
plugins { id "org.jetbrains.kotlin.plugin.jpa" version "1.2.41" }
Read now
Unlock full access