Skip to content

Commit

Permalink
Add boot configuration processor to MCP Autoconfiguration POMs (#2274)
Browse files Browse the repository at this point in the history
- Adding Spring Boot configuration processor for the tools autocompletion support

Resolves #2273

Signed-off-by: Ilayaperumal Gopinathan <[email protected]>
  • Loading branch information
ilayaperumalg authored Feb 18, 2025
1 parent fcc56f4 commit 83dcf38
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions auto-configurations/spring-ai-mcp-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>

<!-- NOTE: Currently the webmvc doesn't implement client transport.
We will add it in the future based on ResrtClient.
-->
Expand Down
6 changes: 6 additions & 0 deletions auto-configurations/spring-ai-mcp-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>

<!-- test dependencies -->

<dependency>
Expand Down

0 comments on commit 83dcf38

Please sign in to comment.