Skip to content

Instantly share code, notes, and snippets.

@michael-simons
Created August 22, 2019 06:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michael-simons/78cc0b20d443baad6a70dcdcbb16edd0 to your computer and use it in GitHub Desktop.
Save michael-simons/78cc0b20d443baad6a70dcdcbb16edd0 to your computer and use it in GitHub Desktop.
Update Jackson's BOM in Spring Boot with Gradle
plugins {
id 'org.springframework.boot' version '2.1.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
jackson.version = 2.9.9.20190807
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment