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 #4500

Merged
merged 1 commit into from
Oct 3, 2023
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
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ java {
}

boolean isTestEnv = project.hasProperty("testEnv")
String dropwizardVersion = "2.1.7"
String dropwizardVersion = "2.1.8"
String logbackVersion = "1.3.5"
String log4jVersion = "2.20.0"
String keycloakVersion = "22.0.3"
Expand Down Expand Up @@ -88,7 +88,7 @@ dependencies {
implementation "io.dropwizard:dropwizard-views-freemarker:${dropwizardVersion}"
implementation 'io.dropwizard-bundles:dropwizard-configurable-assets-bundle:1.3.5'
implementation "io.dropwizard:dropwizard-forms:${dropwizardVersion}"
implementation "org.jdbi:jdbi3-postgres:3.41.1"
implementation "org.jdbi:jdbi3-postgres:3.41.3"

implementation 'ru.vyarus.guicey:guicey-jdbi3:5.9.1'
implementation 'com.google.guava:guava:32.1.2-jre' // Pick the non-Android version of Guice
Expand All @@ -107,7 +107,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.1.3'
implementation 'org.simplejavamail:simple-java-mail:8.2.0'
implementation 'org.eclipse.angus:jakarta.mail:2.0.2'
implementation "ch.qos.logback:logback-classic:${logbackVersion}"
implementation "ch.qos.logback:logback-core:${logbackVersion}"
Expand All @@ -126,8 +126,8 @@ dependencies {
implementation 'com.networknt:json-schema-validator:1.0.87'

// used for writing Excel documents
implementation 'org.apache.poi:poi:5.2.3'
implementation 'org.apache.poi:poi-ooxml:5.2.3'
implementation 'org.apache.poi:poi:5.2.4'
implementation 'org.apache.poi:poi-ooxml:5.2.4'
// For inferring MIME types of attachments
implementation 'org.apache.tika:tika-core:2.9.0'

Expand Down Expand Up @@ -744,7 +744,7 @@ jar {
//Configure the Java Checkstyle settings. Run with ./gradlew check
checkstyle {
configFile = rootProject.file('config/google_checks.xml')
toolVersion = '10.12.3'
toolVersion = '10.12.4'
}
//Easiest way to avoid checking generated code
checkstyleTest {
Expand Down