Skip to content

Commit 6c354a9

Browse files
Merge branch 'main' into feature/user-service
2 parents 1eed913 + 88d2df0 commit 6c354a9

File tree

8 files changed

+8
-65
lines changed

8 files changed

+8
-65
lines changed

server/database/chatdb/Dockerfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

server/database/chatdb/README.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

server/database/chatdb/init_chatdb.sql

Lines changed: 0 additions & 21 deletions
This file was deleted.

server/gateway/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.5'
3+
id 'org.springframework.boot' version '3.5.3'
44
id 'io.spring.dependency-management' version '1.1.7'
55
}
66

@@ -28,7 +28,7 @@ repositories {
2828
// }
2929

3030
dependencies {
31-
implementation 'org.openapitools:openapi-spring'
31+
implementation 'org.openapitools:openapi-spring-gateway'
3232
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3333
testImplementation 'io.projectreactor:reactor-test'
3434
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

server/gateway/generated/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ dependencies {
2828
}
2929

3030
group = 'org.openapitools'
31+
3132
version = '2.1.1'
33+
3234
description = 'openapi-spring-gateway'
3335
java.sourceCompatibility = JavaVersion.VERSION_1_8
3436

server/gateway/generated/src/main/java/org/openapitools/model/RequestStatus.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
/**
2020
* Enumerator representing the status of a MatchRequest | Value | Description | ---------|----------| | PENDING | The system has not attempted to match this request yet | | MATCHED | The system has fulfilled this request | | UNMATCHABLE | The system was unable to fulfill this request | | REMATCH | The sytem should attempt to fulfill this request again (ex: group cancelled for lacking RSVPs) | | EXPIRED | The date for this MatchRequest is in the past |
2121
*/
22-
2322
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-06-30T08:36:28.287057915Z[Etc/UTC]", comments = "Generator version: 7.14.0")
2423
public enum RequestStatus {
2524

server/matching/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.5'
3+
id 'org.springframework.boot' version '3.5.3'
44
id 'io.spring.dependency-management' version '1.1.7'
55
}
66

@@ -18,7 +18,7 @@ repositories {
1818
}
1919

2020
dependencies {
21-
implementation 'org.openapitools:openapi-spring'
21+
implementation 'org.openapitools:openapi-spring-matching'
2222
implementation 'org.springframework.boot:spring-boot-starter-web'
2323
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2424
testImplementation 'org.springframework.boot:spring-boot-starter-test'

server/user/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.5'
3+
id 'org.springframework.boot' version '3.5.3'
44
id 'io.spring.dependency-management' version '1.1.7'
55
}
66

@@ -18,7 +18,7 @@ repositories {
1818
}
1919

2020
dependencies {
21-
implementation 'org.openapitools:openapi-spring'
21+
implementation 'org.openapitools:openapi-spring-user'
2222
implementation 'org.springframework.boot:spring-boot-starter-web'
2323
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2424
testImplementation 'org.springframework.boot:spring-boot-starter-test'

0 commit comments

Comments
 (0)