Skip to content

Commit

Permalink
fix: fix security issues
Browse files Browse the repository at this point in the history
  • Loading branch information
astsiapanay committed Dec 12, 2023
1 parent b629d02 commit c346877
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ dependencies {
}
}

implementation("org.springframework.boot:spring-boot-starter-web:3.1.3")
constraints {
implementation('ch.qos.logback:logback-classic:1.4.12') {
because 'previous version 1.4.11 has security issue CVE-2023-6378'
}
}

implementation("org.springframework.boot:spring-boot-starter-web:3.2.0")

implementation("com.auth0:java-jwt:4.4.0")
implementation("com.auth0:jwks-rsa:0.22.1")
Expand Down

0 comments on commit c346877

Please sign in to comment.