Skip to content

Commit

Permalink
Springバージョンアップ対応
Browse files Browse the repository at this point in the history
  • Loading branch information
rnakagawa16 committed Jan 7, 2025
1 parent 38483be commit afd0e96
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 28 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"openapi": "3.0.1",
"openapi": "3.1.0",
"info": {
"description": "Azure AD B2Cを利用したユーザー認証機能を提供するサンプルアプリケーションです。",
"title": "Azure AD B2C ユーザー認証",
Expand Down Expand Up @@ -88,52 +88,66 @@
"type": "object",
"properties": {
"detail": {
"type": "string"
"type": [
"string"
]
},
"instance": {
"type": "string",
"type": [
"string"
],
"format": "uri"
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "object"
}
"type": [
"object"
],
"additionalProperties": {}
},
"status": {
"type": "integer",
"type": [
"integer"
],
"format": "int32"
},
"title": {
"type": "string"
"type": [
"string"
]
},
"type": {
"type": "string",
"type": [
"string"
],
"format": "uri"
}
}
},
"TimeResponse": {
"required": [
"serverTime"
],
"type": "object",
"properties": {
"serverTime": {
"type": "string"
"type": [
"string"
]
}
}
},
"required": [
"serverTime"
]
},
"UserResponse": {
"required": [
"userId"
],
"type": "object",
"properties": {
"userId": {
"type": "string"
"type": [
"string"
]
}
}
},
"required": [
"userId"
]
}
},
"securitySchemes": {
Expand Down
12 changes: 6 additions & 6 deletions samples/azure-ad-b2c-sample/auth-backend/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ext {
// -- PLUGINS
springBootVersion = "3.3.4"
springDependencyManagementVersion = "1.1.6"
springBootVersion = "3.4.1"
springDependencyManagementVersion = "1.1.7"
springdocOpenapiGradlePluginVersion = "1.9.0"
spotbugsVersion = "6.0.24"
spotbugsVersion = "6.0.27"

// -- DEPENDENCIES
springdocOpenapiVersion = "2.6.0"
activeDirectoryVersion = "5.16.0"
springCloudAzureVersion = "5.16.0"
springdocOpenapiVersion = "2.8.1"
activeDirectoryVersion = "5.19.0"
springCloudAzureVersion = "5.19.0"

supportDependencies = [
spring_boot_starter : "org.springframework.boot:spring-boot-starter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export interface ProblemDetail {
'instance'?: string;
/**
*
* @type {{ [key: string]: object; }}
* @type {{ [key: string]: any; }}
* @memberof ProblemDetail
*/
'properties'?: { [key: string]: object; };
'properties'?: { [key: string]: any; };
/**
*
* @type {number}
Expand Down

0 comments on commit afd0e96

Please sign in to comment.