Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
id 'io.spring.dependency-management' version '1.1.7'
id 'jacoco'
id 'info.solidsoft.pitest' version '1.15.0'
id "org.owasp.dependencycheck" version "11.1.1"
Expand All @@ -24,13 +24,13 @@ repositories {
}

ext {
mapstructVersion = "1.5.5.Final"
lombokVersion = "1.18.30"
mapstructVersion = "1.6.3"
lombokVersion = "1.18.36"
wireMockVersion = "3.0.1"
ioCucumberVersion = "7.15.0"
springDocVersion = "2.3.0"
jacocoVersion = "0.8.9"
junitVintage = "5.10.2"
junitVintage = "5.11.4"
}

dependencies {
Expand All @@ -54,8 +54,6 @@ dependencies {
testAnnotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}"
//SpringDoc
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:${springDocVersion}"
//Explicitly Added to fix the vulnerabilities identified in previous versions
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1'

/*
*https://docs.gradle.org/current/userguide/dependency_management.html#sec:module_substitution
Expand Down
Loading