|
15 | 15 | <name>SchemaCrawler AI - MCP Server</name> |
16 | 16 | <description>MCP server using Spring Boot AI</description> |
17 | 17 |
|
| 18 | + <repositories> |
| 19 | + <repository> |
| 20 | + <id>spring-milestones</id> |
| 21 | + <name>Spring Milestones</name> |
| 22 | + <url>https://repo.spring.io/milestone</url> |
| 23 | + </repository> |
| 24 | + <repository> |
| 25 | + <id>spring-snapshots</id> |
| 26 | + <name>Spring Snapshots</name> |
| 27 | + <url>https://repo.spring.io/snapshot</url> |
| 28 | + <snapshots> |
| 29 | + <enabled>true</enabled> |
| 30 | + </snapshots> |
| 31 | + </repository> |
| 32 | + <repository> |
| 33 | + <id>spring-releases</id> |
| 34 | + <name>Spring Releases</name> |
| 35 | + <url>https://repo.spring.io/release</url> |
| 36 | + </repository> |
| 37 | + </repositories> |
| 38 | + |
| 39 | + <dependencyManagement> |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-dependencies</artifactId> |
| 44 | + <version>3.4.5</version> |
| 45 | + <type>pom</type> |
| 46 | + <scope>import</scope> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework.ai</groupId> |
| 50 | + <artifactId>spring-ai-bom</artifactId> |
| 51 | + <version>1.0.0-SNAPSHOT</version> |
| 52 | + <type>pom</type> |
| 53 | + <scope>import</scope> |
| 54 | + </dependency> |
| 55 | + </dependencies> |
| 56 | + </dependencyManagement> |
| 57 | + |
18 | 58 | <dependencies> |
19 | 59 | <dependency> |
20 | 60 | <groupId>us.fatehi</groupId> |
|
26 | 66 | <version>${project.version}</version> |
27 | 67 | </dependency> |
28 | 68 |
|
| 69 | + <dependency> |
| 70 | + <groupId>org.springframework.ai</groupId> |
| 71 | + <artifactId>spring-ai-starter-mcp-server-webmvc</artifactId> |
| 72 | + </dependency> |
| 73 | + |
29 | 74 | <!-- Test dependencies --> |
30 | 75 | <dependency> |
31 | 76 | <groupId>us.fatehi</groupId> |
32 | 77 | <artifactId>schemacrawler-testdb</artifactId> |
33 | 78 | <scope>test</scope> |
34 | 79 | </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.springframework.boot</groupId> |
| 82 | + <artifactId>spring-boot-starter-test</artifactId> |
| 83 | + <scope>test</scope> |
| 84 | + </dependency> |
35 | 85 | </dependencies> |
36 | 86 |
|
| 87 | + <build> |
| 88 | + <plugins> |
| 89 | + <plugin> |
| 90 | + <groupId>org.springframework.boot</groupId> |
| 91 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 92 | + <executions> |
| 93 | + <execution> |
| 94 | + <goals> |
| 95 | + <goal>repackage</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + </plugins> |
| 101 | + </build> |
| 102 | + |
37 | 103 | </project> |
0 commit comments