diff --git a/build.gradle.kts b/build.gradle.kts index 5025fad..be47b28 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -64,13 +64,13 @@ gradlePlugin { } dependencies { - implementation("com.fasterxml.jackson.core:jackson-databind:2.14.3") + implementation(libs.jackson.databind) testImplementation("org.spockframework:spock-core:2.2-groovy-3.0") { exclude(group = "org.codehaus.groovy") } testImplementation("org.spockframework:spock-junit4:2.0-groovy-3.0") - testImplementation("com.fasterxml.jackson.core:jackson-databind:2.14.3") + testImplementation(libs.jackson.databind) } tasks.withType { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..275c738 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,2 @@ +[libraries] +jackson-databind = "com.fasterxml.jackson.core:jackson-databind:2.14.3"