Skip to content

Commit e4f2255

Browse files
fix(deps): update all non-major application-server dependencies
1 parent 40833fb commit e4f2255

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

server/application-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gradle:9.5.1-jdk21-alpine AS build
1+
FROM gradle:9.6.1-jdk21-alpine AS build
22
COPY --chown=gradle:gradle . /home/gradle/src
33
WORKDIR /home/gradle/src
44
# Skip tests inside the image build — zonky/embedded-postgres integration tests

server/application-server/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ import org.springframework.boot.gradle.tasks.run.BootRun
44
// so that it can be used to connect to the database and execute the migrations.
55
buildscript {
66
dependencies {
7-
classpath('org.postgresql:postgresql:42.7.11')
8-
classpath('org.flywaydb:flyway-database-postgresql:12.9.0')
7+
classpath('org.postgresql:postgresql:42.7.13')
8+
classpath('org.flywaydb:flyway-database-postgresql:12.11.0')
99
}
1010
}
1111

1212
plugins {
1313
id 'org.springframework.boot'
1414
id 'io.freefair.lombok'
1515
id 'org.springdoc.openapi-gradle-plugin' version '1.9.0'
16-
id 'org.openapi.generator' version '7.23.0'
17-
id 'org.flywaydb.flyway' version '12.9.0'
16+
id 'org.openapi.generator' version '7.24.0'
17+
id 'org.flywaydb.flyway' version '12.11.0'
1818
}
1919

2020
// The OpenAPI tasks boot the app against the in-memory H2 database, so H2 is
@@ -41,18 +41,18 @@ dependencies {
4141
implementation 'org.springframework.boot:spring-boot-jackson2'
4242
implementation 'org.springframework.security:spring-security-oauth2-jose'
4343
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.3'
44-
implementation 'org.openapitools:jackson-databind-nullable:0.2.10'
44+
implementation 'org.openapitools:jackson-databind-nullable:0.2.11'
4545
implementation 'com.github.ben-manes.caffeine:caffeine'
46-
implementation 'io.nats:jnats:2.25.3'
46+
implementation 'io.nats:jnats:2.26.0'
4747
implementation 'org.springframework.ai:spring-ai-starter-model-openai'
4848
implementation 'org.kohsuke:github-api:1.330'
4949
implementation 'com.squareup.okhttp3:okhttp:5.4.0'
5050
implementation 'com.squareup.okhttp3:logging-interceptor:5.4.0'
5151
implementation 'org.flywaydb:flyway-database-postgresql'
5252
implementation 'io.jsonwebtoken:jjwt-api:0.13.0'
53-
implementation 'io.sentry:sentry-spring-boot-4-starter:8.44.1'
53+
implementation 'io.sentry:sentry-spring-boot-4-starter:8.51.0'
5454
// Helios push-based status updates
55-
implementation "de.tum.cit.aet:helios-status-spring-starter:1.1.1"
55+
implementation "de.tum.cit.aet:helios-status-spring-starter:1.2.0"
5656
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.13.0'
5757
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.13.0'
5858
runtimeOnly 'org.postgresql:postgresql'

0 commit comments

Comments
 (0)