Skip to content

fix(deps): update all non-major application-server dependencies #683

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

Draft
wants to merge 1 commit into
base: staging
Choose a base branch
from
Draft
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: 5 additions & 5 deletions server/application-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.springframework.boot.gradle.tasks.run.BootRun
buildscript {
dependencies {
classpath('org.postgresql:postgresql:42.7.5')
classpath('org.flywaydb:flyway-database-postgresql:11.7.2')
classpath('org.flywaydb:flyway-database-postgresql:11.8.0')
}
}

Expand All @@ -14,7 +14,7 @@ plugins {
id 'io.freefair.lombok'
id 'org.springdoc.openapi-gradle-plugin' version '1.9.0'
id 'org.openapi.generator' version '7.12.0'
id 'org.flywaydb.flyway' version '11.7.2'
id 'org.flywaydb.flyway' version '11.8.0'
}

// Detect if the generateOpenApiDocs task is being executed
Expand Down Expand Up @@ -48,10 +48,10 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
implementation 'javax.annotation:javax.annotation-api:1.3.2'
implementation 'org.flywaydb:flyway-core:11.7.2'
implementation 'org.flywaydb:flyway-database-postgresql:11.7.2'
implementation 'org.flywaydb:flyway-core:11.8.0'
implementation 'org.flywaydb:flyway-database-postgresql:11.8.0'
implementation 'io.jsonwebtoken:jjwt-api:0.12.6'
implementation 'io.sentry:sentry-spring-boot-starter-jakarta:8.9.0'
implementation 'io.sentry:sentry-spring-boot-starter-jakarta:8.10.0'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.6'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.6'
runtimeOnly 'org.postgresql:postgresql'
Expand Down
Loading