Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit 305b80a

Browse files
committed
refactor: rename project artifacts to follow spring-ai naming convention
- Rename mcp-core to spring-ai-mcp-core - Rename mcp-spring to spring-ai-mcp-spring - Rename mcp-spring-boot to spring-ai-mcp-spring-boot - Rename parent artifact from mcp-parent to spring-ai-mcp - Remove unused spring-ai.version property
1 parent 1d4aea3 commit 305b80a

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

mcp-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.springframework.experimental</groupId>
7-
<artifactId>mcp-core</artifactId>
7+
<artifactId>spring-ai-mcp-core</artifactId>
88
<version>0.1.0-SNAPSHOT</version>
9-
<name>mcp-core</name>
9+
<name>spring-ai-mcp-core</name>
1010
<description>Demo project for Spring Boot</description>
1111

1212
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
@@ -16,11 +16,11 @@
1616
<developerConnection>[email protected]:spring-projects-experimental/spring-ai-mcp.git</developerConnection>
1717
</scm>
1818

19-
2019
<properties>
2120
<java.version>17</java.version>
2221
<maven.compiler.release>17</maven.compiler.release>
2322
</properties>
23+
2424
<dependencies>
2525
<dependency>
2626
<groupId>com.fasterxml.jackson.core</groupId>

mcp-spring-boot/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.experimental</groupId>
13-
<artifactId>mcp-spring-boot</artifactId>
13+
<artifactId>spring-ai-mcp-spring-boot</artifactId>
1414
<version>0.1.0-SNAPSHOT</version>
15-
<name>mcp-spring-boot</name>
15+
<name>spring-ai-mcp-spring-boot</name>
1616
<description>Demo project for Spring Boot</description>
1717

1818
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
@@ -33,7 +33,7 @@
3333
</dependency>
3434
<dependency>
3535
<groupId>org.springframework.experimental</groupId>
36-
<artifactId>mcp-spring</artifactId>
36+
<artifactId>spring-ai-mcp-spring</artifactId>
3737
<version>0.1.0-SNAPSHOT</version>
3838
</dependency>
3939
<dependency>

mcp-spring/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.springframework.experimental</groupId>
7-
<artifactId>mcp-spring</artifactId>
7+
<artifactId>spring-ai-mcp-spring</artifactId>
88
<version>0.1.0-SNAPSHOT</version>
9-
<name>mcp-spring</name>
9+
<name>spring-ai-mcp-spring</name>
1010
<description>Demo project for Spring Boot</description>
1111

1212
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
@@ -27,7 +27,7 @@
2727
</dependency>
2828
<dependency>
2929
<groupId>org.springframework.experimental</groupId>
30-
<artifactId>mcp-core</artifactId>
30+
<artifactId>spring-ai-mcp-core</artifactId>
3131
<version>0.1.0-SNAPSHOT</version>
3232
</dependency>
3333
</dependencies>

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.springframework.experimental</groupId>
7-
<artifactId>mcp-parent</artifactId>
7+
8+
<artifactId>spring-ai-mcp</artifactId>
9+
810
<version>0.0.1-SNAPSHOT</version>
911
<packaging>pom</packaging>
1012

@@ -59,8 +61,8 @@
5961

6062
<properties>
6163
<java.version>17</java.version>
62-
<spring-ai.version>1.0.0-M4</spring-ai.version>
6364
</properties>
65+
6466
<modules>
6567
<module>mcp-core</module>
6668
<module>mcp-spring</module>

0 commit comments

Comments
 (0)