October 2018
Intermediate to advanced
982 pages
23h 29m
English
We will start by enhancing our BookPub project with base Spring Cloud modules by adding them to the main build configuration:
...
apply plugin: 'docker'
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.BUILD-SNAPSHOT'
}
}
jar {
baseName = 'bookpub'
version = '0.0.1-SNAPSHOT'
}
...
dependencies {
...
compile("org.springframework.boot:spring-boot-devtools")
compile("org.springframework.cloud:spring-cloud-context")
compile("org.springframework.cloud:spring-cloud-commons")
runtime("com.h2database:h2")
...
}
Read now
Unlock full access