December 2017
Intermediate to advanced
260 pages
7h 34m
English
We need to add an additional Maven repository in our build.gradle file to fetch the artifacts from the Exposed library:
repositories { ... // For Exposed library maven { url "https://dl.bintray.com/kotlin/exposed" } }
Add the following dependencies for the Exposed API and another dependency to configure transaction support in the application:
// Exposed compile 'org.jetbrains.exposed:exposed:0.8.5' // For transaction support compile 'org.jetbrains.exposed:spring-transaction:0.8.5'
Read now
Unlock full access