December 2017
Intermediate to advanced
260 pages
7h 34m
English
Similarly, we add more dependencies of the pre-requisite components. You can look at them in the complete Gradle script build.gradle:
group 'com.book' version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = '1.1.50' ext.spring_boot_version = '1.5.7.RELEASE' repositories { mavenCentral() } dependencies { // Kotlin-Gradle Plugin classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // Opens all the classes - Explained later classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version" classpath "org.springframework.boot: spring-boot-gradle-plugin:$spring_boot_version" } } apply plugin: 'kotlin' apply plugin: "kotlin-spring" apply plugin: 'org.springframework.boot' sourceCompatibility = 1.8
Read now
Unlock full access