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

Commit 1d4aea3

Browse files
committed
chore: update project metadata for Spring projects alignment
Change groupId to org.springframework.experimental Bump version to 0.1.0-SNAPSHOT Add proper SCM, license, and developer information Configure distribution, issue, and CI management Clean up empty XML tags
1 parent 52e6644 commit 1d4aea3

File tree

4 files changed

+72
-52
lines changed

4 files changed

+72
-52
lines changed

mcp-core/pom.xml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,20 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
6-
<groupId>spring.ai.experimental</groupId>
6+
<groupId>org.springframework.experimental</groupId>
77
<artifactId>mcp-core</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
8+
<version>0.1.0-SNAPSHOT</version>
99
<name>mcp-core</name>
1010
<description>Demo project for Spring Boot</description>
11-
<url />
12-
<licenses>
13-
<license />
14-
</licenses>
15-
<developers>
16-
<developer />
17-
</developers>
11+
12+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
1813
<scm>
19-
<connection />
20-
<developerConnection />
21-
<tag />
22-
<url />
14+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
15+
<connection>git://github.com/spring-projects-experimental/spring-ai-mcp.git</connection>
16+
<developerConnection>[email protected]:spring-projects-experimental/spring-ai-mcp.git</developerConnection>
2317
</scm>
18+
19+
2420
<properties>
2521
<java.version>17</java.version>
2622
<maven.compiler.release>17</maven.compiler.release>
@@ -93,4 +89,4 @@
9389
</repository>
9490
</repositories>
9591

96-
</project>
92+
</project>

mcp-spring-boot/pom.xml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,19 @@
99
<version>3.4.0</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
12-
<groupId>spring.ai.experimental</groupId>
12+
<groupId>org.springframework.experimental</groupId>
1313
<artifactId>mcp-spring-boot</artifactId>
14-
<version>0.0.1-SNAPSHOT</version>
14+
<version>0.1.0-SNAPSHOT</version>
1515
<name>mcp-spring-boot</name>
1616
<description>Demo project for Spring Boot</description>
17-
<url />
18-
<licenses>
19-
<license />
20-
</licenses>
21-
<developers>
22-
<developer />
23-
</developers>
17+
18+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
2419
<scm>
25-
<connection />
26-
<developerConnection />
27-
<tag />
28-
<url />
20+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
21+
<connection>git://github.com/spring-projects-experimental/spring-ai-mcp.git</connection>
22+
<developerConnection>[email protected]:spring-projects-experimental/spring-ai-mcp.git</developerConnection>
2923
</scm>
24+
3025
<properties>
3126
<java.version>17</java.version>
3227
<spring-ai.version>1.0.0-M4</spring-ai.version>
@@ -37,9 +32,9 @@
3732
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
3833
</dependency>
3934
<dependency>
40-
<groupId>spring.ai.experimental</groupId>
35+
<groupId>org.springframework.experimental</groupId>
4136
<artifactId>mcp-spring</artifactId>
42-
<version>0.0.1-SNAPSHOT</version>
37+
<version>0.1.0-SNAPSHOT</version>
4338
</dependency>
4439
<dependency>
4540
<groupId>org.springframework.boot</groupId>

mcp-spring/pom.xml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,19 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
6-
<groupId>spring.ai.experimental</groupId>
6+
<groupId>org.springframework.experimental</groupId>
77
<artifactId>mcp-spring</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
8+
<version>0.1.0-SNAPSHOT</version>
99
<name>mcp-spring</name>
1010
<description>Demo project for Spring Boot</description>
11-
<url />
12-
<licenses>
13-
<license />
14-
</licenses>
15-
<developers>
16-
<developer />
17-
</developers>
11+
12+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
1813
<scm>
19-
<connection />
20-
<developerConnection />
21-
<tag />
22-
<url />
14+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
15+
<connection>git://github.com/spring-projects-experimental/spring-ai-mcp.git</connection>
16+
<developerConnection>[email protected]:spring-projects-experimental/spring-ai-mcp.git</developerConnection>
2317
</scm>
18+
2419
<properties>
2520
<java.version>17</java.version>
2621
<spring-ai.version>1.0.0-M4</spring-ai.version>
@@ -31,9 +26,9 @@
3126
<artifactId>spring-ai-core</artifactId>
3227
</dependency>
3328
<dependency>
34-
<groupId>spring.ai.experimental</groupId>
29+
<groupId>org.springframework.experimental</groupId>
3530
<artifactId>mcp-core</artifactId>
36-
<version>0.0.1-SNAPSHOT</version>
31+
<version>0.1.0-SNAPSHOT</version>
3732
</dependency>
3833
</dependencies>
3934
<dependencyManagement>

pom.xml

Lines changed: 42 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,60 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
6-
<groupId>spring.ai.experiment</groupId>
6+
<groupId>org.springframework.experimental</groupId>
77
<artifactId>mcp-parent</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<name>mcp-parent</name>
1212
<description>Demo project for Spring Boot</description>
13-
<url />
13+
14+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
15+
16+
<organization>
17+
<name>VMware Inc.</name>
18+
<url>https://spring.io</url>
19+
</organization>
20+
1421
<licenses>
15-
<license />
22+
<license>
23+
<name>Apache 2.0</name>
24+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
25+
<distribution>repo</distribution>
26+
</license>
1627
</licenses>
28+
1729
<developers>
18-
<developer />
30+
<developer>
31+
<name>Christian Tzolov</name>
32+
</developer>
33+
<developer>
34+
<name>Dariusz Jędrzejczyk</name>
35+
</developer>
1936
</developers>
2037
<scm>
21-
<connection />
22-
<developerConnection />
23-
<tag />
24-
<url />
38+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
39+
<connection>git://github.com/spring-projects-experimental/spring-ai-mcp.git</connection>
40+
<developerConnection>[email protected]:spring-projects-experimental/spring-ai-mcp.git</developerConnection>
2541
</scm>
42+
<issueManagement>
43+
<system>Github Issues</system>
44+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp/issues</url>
45+
</issueManagement>
46+
<ciManagement>
47+
<system>Github Actions</system>
48+
<url>https://github.com/spring-projects-experimental/spring-ai-mcp/actions</url>
49+
</ciManagement>
50+
<distributionManagement>
51+
<snapshotRepository>
52+
<id>spring-snapshots</id>
53+
<url>https://repo.spring.io/libs-snapshot-local</url>
54+
<releases>
55+
<enabled>false</enabled>
56+
</releases>
57+
</snapshotRepository>
58+
</distributionManagement>
59+
2660
<properties>
2761
<java.version>17</java.version>
2862
<spring-ai.version>1.0.0-M4</spring-ai.version>

0 commit comments

Comments
 (0)