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

Commit 910be3c

Browse files
committed
Rename modules, update .gitignore
1 parent 49e0291 commit 910be3c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+71
-156
lines changed

Diff for: .flattened-pom.xml

-36
This file was deleted.

Diff for: .gitignore

+42-11
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,64 @@
1-
HELP.md
1+
### Maven/Gradle Builds ###
22
target/
33
!.mvn/wrapper/maven-wrapper.jar
44
!**/src/main/**/target/
55
!**/src/test/**/target/
6+
build/
7+
!**/src/main/**/build/
8+
!**/src/test/**/build/
9+
.gradle
10+
out
11+
/.gradletasknamecache
12+
**/*.flattened-pom.xml
613

7-
### STS ###
14+
### IDE - Eclipse/STS ###
815
.apt_generated
916
.classpath
1017
.factorypath
1118
.project
12-
.settings
19+
.settings/
1320
.springBeans
1421
.sts4-cache
22+
bin/
23+
com.springsource.sts.config.flow.prefs
1524

16-
### IntelliJ IDEA ###
17-
.idea
18-
*.iws
25+
### IDE - IntelliJ IDEA ###
26+
.idea/
1927
*.iml
2028
*.ipr
29+
*.iws
2130

22-
### NetBeans ###
31+
### IDE - NetBeans ###
2332
/nbproject/private/
2433
/nbbuild/
2534
/dist/
2635
/nbdist/
2736
/.nb-gradle/
28-
build/
29-
!**/src/main/**/build/
30-
!**/src/test/**/build/
3137

32-
### VS Code ###
38+
### IDE - VS Code ###
3339
.vscode/
40+
vscode/
41+
settings.json
42+
43+
### Logs and Databases ###
44+
build.log
45+
shell.log
46+
integration-repo
47+
ivy-cache
48+
spring-build
49+
derby-home
50+
derbydb
51+
derby.log
52+
53+
### Node.js ###
54+
node/
55+
node_modules/
56+
package-lock.json
57+
package.json
58+
59+
### Other ###
60+
.antlr/
61+
.profiler/
62+
s3.properties
63+
.*.swp
64+
.DS_Store

Diff for: mcp-spring-boot/.flattened-pom.xml

-55
This file was deleted.

Diff for: mcp-spring/.flattened-pom.xml

-49
This file was deleted.

Diff for: pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<packaging>pom</packaging>
1212
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
1313

14-
<name>mcp-parent</name>
14+
<name>Spring AI MCP</name>
1515
<description>Demo project for Spring Boot</description>
1616

1717

@@ -91,9 +91,9 @@
9191
</properties>
9292

9393
<modules>
94-
<module>mcp-core</module>
95-
<module>mcp-spring</module>
96-
<module>mcp-spring-boot</module>
94+
<module>spring-ai-mcp-core</module>
95+
<module>spring-ai-mcp-spring</module>
96+
<module>spring-ai-mcp-spring-boot</module>
9797
</modules>
9898

9999
<build>

Diff for: settings.xml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
4+
https://maven.apache.org/xsd/settings-1.0.0.xsd">
5+
6+
<servers>
7+
<server>
8+
<id>spring-snapshots</id>
9+
<username>${env.ARTIFACTORY_USERNAME}</username>
10+
<password>${env.ARTIFACTORY_PASSWORD}</password>
11+
</server>
12+
<server>
13+
<id>spring-staging</id>
14+
<username>${env.ARTIFACTORY_USERNAME}</username>
15+
<password>${env.ARTIFACTORY_PASSWORD}</password>
16+
</server>
17+
<server>
18+
<id>spring-milestones</id>
19+
<username>${env.ARTIFACTORY_USERNAME}</username>
20+
<password>${env.ARTIFACTORY_PASSWORD}</password>
21+
</server>
22+
</servers>
23+
24+
</settings>
File renamed without changes.

Diff for: mcp-core/mvnw renamed to spring-ai-mcp-core/mvnw

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: mcp-spring-boot/pom.xml renamed to spring-ai-mcp-spring-boot/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>0.0.1-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>spring-ai-mcp-spring-boot</artifactId>
12-
<name>spring-ai-mcp-spring-boot</name>
12+
<name>Spring AI MCP Spring Boot</name>
1313
<description>Spring AI MCP Spring Boot Integration</description>
1414

1515
<url>https://github.com/spring-projects-experimental/spring-ai-mcp</url>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)