Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update most non-major Gradle dependencies #4940

Merged
merged 1 commit into from
Oct 1, 2024
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
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ java {
boolean isTestEnv = project.hasProperty("testEnv")
String dropwizardVersion = "4.0.8"
String logbackVersion = "1.4.14"
String log4jVersion = "2.24.0"
String log4jVersion = "2.24.1"
String keycloakVersion = "24.0.5"
String springBootVersion = "3.3.4"
String springFrameworkVersion = "6.1.13"
Expand Down Expand Up @@ -110,7 +110,7 @@ dependencies {
implementation 'javax.cache:cache-api:1.1.1'
implementation 'commons-beanutils:commons-beanutils:1.9.4'

implementation 'org.simplejavamail:simple-java-mail:8.11.3'
implementation 'org.simplejavamail:simple-java-mail:8.12.0'
implementation 'org.eclipse.angus:jakarta.mail:2.0.3'
implementation "ch.qos.logback:logback-classic:${logbackVersion}"
implementation "ch.qos.logback:logback-core:${logbackVersion}"
Expand Down Expand Up @@ -763,7 +763,7 @@ jar {
//Configure the Java Checkstyle settings. Run with ./gradlew check
checkstyle {
configFile = rootProject.file('config/google_checks.xml')
toolVersion = '10.18.1'
toolVersion = '10.18.2'
}
//Easiest way to avoid checking generated code
checkstyleTest {
Expand Down
Loading