From cb498b306234d77eb108dc61e325e12f9ad8c240 Mon Sep 17 00:00:00 2001 From: Alex Rechtin Date: Mon, 15 Nov 2021 13:11:12 +0100 Subject: [PATCH] added jackson version control --- hellofx/data/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hellofx/data/build.gradle.kts b/hellofx/data/build.gradle.kts index 5ec7900..5b07f24 100644 --- a/hellofx/data/build.gradle.kts +++ b/hellofx/data/build.gradle.kts @@ -3,8 +3,8 @@ plugins { } dependencies { - - implementation("com.fasterxml.jackson.core:jackson-databind:2.13.0") - implementation("com.fasterxml.jackson.core:jackson-core:2.13.0") - implementation("com.fasterxml.jackson.core:jackson-annotations:2.13.0") + val jacksonVersion = "2.13.0" + implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion") + implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion") + implementation("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion") }