Skip to content

Commit

Permalink
EPMHLM-350
Browse files Browse the repository at this point in the history
[Jan] Fix Vulnerabilities from dependencies
  • Loading branch information
Alex-Reif committed Mar 15, 2024
1 parent cb78453 commit 881d7e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.2.2'
id 'org.springframework.boot' version '3.2.3'
id 'io.spring.dependency-management' version "1.1.4"
id 'java'
id 'maven-publish'
Expand All @@ -24,7 +24,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-logging'
implementation 'org.liquibase:liquibase-core:4.25.1'
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:42.6.1'
implementation 'com.zaxxer:HikariCP:3.3.1'
implementation 'com.vladmihalcea:hibernate-types-52:2.7.0'
implementation 'javax.validation:validation-api:2.0.1.Final'
Expand All @@ -41,7 +41,7 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.0'

implementation 'org.testcontainers:junit-jupiter:1.19.3'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.24.0'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.26.0'
testImplementation 'org.testcontainers:postgresql:1.19.3'
testImplementation('org.testcontainers:testcontainers:1.19.3')
testImplementation 'io.rest-assured:rest-assured:5.3.2'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void save(@Valid @RequestBody SelectorRequestDto request) {
*/
@GetMapping()
public ReferenceElementsDto getReferenceElements(RequestDto dto) {
log.info("[Get Reference] Request: {})", dto);
log.debug("[Get Reference] Request: {})", dto);
ReferenceElementsDto referenceElements = selectorService.getReferenceElements(dto);
log.debug("[Get Reference] Response: {})", referenceElements);
return referenceElements;
Expand Down

0 comments on commit 881d7e3

Please sign in to comment.