Skip to content

Commit c93c8d5

Browse files
ng-galienclaude
andcommitted
fix: Update Spring Boot to 3.5.0 for @ClientRegistrationId support
- Upgrade Spring Boot from 3.1.3 to 3.5.0 - Add spring-boot-starter-oauth2-client dependency @ClientRegistrationId requires Spring Security 6.5+ (Spring Boot 3.5+) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 697fc5f commit c93c8d5

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • samples/client/petstore/spring-http-interface-oauth

samples/client/petstore/spring-http-interface-oauth/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>3.1.3</version>
15+
<version>3.5.0</version>
1616
<relativePath/> <!-- lookup parent from repository -->
1717
</parent>
1818

@@ -67,6 +67,10 @@
6767
<artifactId>jackson-databind-nullable</artifactId>
6868
<version>0.2.8</version>
6969
</dependency>
70+
<dependency>
71+
<groupId>org.springframework.boot</groupId>
72+
<artifactId>spring-boot-starter-oauth2-client</artifactId>
73+
</dependency>
7074
<dependency>
7175
<groupId>org.springframework.boot</groupId>
7276
<artifactId>spring-boot-starter-test</artifactId>

0 commit comments

Comments
 (0)