June 2017
Intermediate to advanced
496 pages
14h 4m
English
In addition to the normal dependencies in a Java Spring Boot project, there are two additional dependencies in pom.xml
<dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jre8</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>${kotlin.version}</version> </dependency>
The following are a couple of important things to note:
In addition to spring-boot-maven-plugin, kotlin-maven-plugin is added in as a ...
Read now
Unlock full access