|
17 | 17 | <developerConnection>git@github.com/modelcontextprotocol/java-sdk.git</developerConnection> |
18 | 18 | </scm> |
19 | 19 |
|
20 | | - <name>Spring AI MCP Parent</name> |
21 | | - <description>Java SDK and Spring Framework integration for the Model Context Protocol (MCP), enabling interaction with AI models and tools through a standardized interface</description> |
| 20 | + <name>Java SDK MCP Parent</name> |
| 21 | + <description>Java SDK for the Model Context Protocol (MCP), enabling interaction with AI models and tools through a standardized interface</description> |
22 | 22 |
|
23 | 23 |
|
24 | 24 | <organization> |
25 | | - <name>Spring Framework</name> |
26 | | - <url>https://spring.io</url> |
| 25 | + <name>Anthropic</name> |
| 26 | + <url>https://www.anthropic.com</url> |
27 | 27 | </organization> |
28 | 28 |
|
29 | 29 | <licenses> |
|
65 | 65 | <maven.compiler.source>17</maven.compiler.source> |
66 | 66 | <maven.compiler.target>17</maven.compiler.target> |
67 | 67 |
|
68 | | - <spring-ai.version>1.0.0-M5</spring-ai.version> |
69 | 68 | <assert4j.version>3.26.3</assert4j.version> |
70 | 69 | <junit.version>5.10.2</junit.version> |
71 | 70 | <mockito.version>5.11.0</mockito.version> |
|
297 | 296 | </build> |
298 | 297 | </profile> |
299 | 298 | <profile> |
300 | | - <id>relesae</id> |
| 299 | + <id>release</id> |
301 | 300 | <build> |
302 | 301 | <plugins> |
303 | 302 | <plugin> |
304 | | - <groupId>org.sonatype.central</groupId> |
305 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
306 | | - <version>0.7.0</version> |
| 303 | + <groupId>org.sonatype.plugins</groupId> |
| 304 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 305 | + <version>1.6.7</version> |
307 | 306 | <extensions>true</extensions> |
308 | 307 | <configuration> |
309 | | - <publishingServerId>central</publishingServerId> |
| 308 | + <serverId>ossrh</serverId> |
| 309 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 310 | + <!-- |
| 311 | + the property autoReleaseAfterClose set to false you can manually inspect the staging repository in |
| 312 | + the Nexus Repository Manager and trigger a release of the staging |
| 313 | + repository later |
| 314 | + --> |
| 315 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
310 | 316 | </configuration> |
311 | 317 | </plugin> |
312 | 318 | <plugin> |
|
332 | 338 | </plugins> |
333 | 339 | </build> |
334 | 340 | <distributionManagement> |
| 341 | + <snapshotRepository> |
| 342 | + <id>ossrh</id> |
| 343 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 344 | + </snapshotRepository> |
335 | 345 | <repository> |
336 | 346 | <id>ossrh</id> |
337 | | - <name>Central Repository OSSRH</name> |
338 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 347 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
339 | 348 | </repository> |
340 | 349 | </distributionManagement> |
341 | 350 | </profile> |
|
350 | 359 | <type>pom</type> |
351 | 360 | <scope>import</scope> |
352 | 361 | </dependency> |
353 | | - <dependency> |
354 | | - <groupId>org.springframework.ai</groupId> |
355 | | - <artifactId>spring-ai-bom</artifactId> |
356 | | - <version>${spring-ai.version}</version> |
357 | | - <type>pom</type> |
358 | | - <scope>import</scope> |
359 | | - </dependency> |
360 | 362 | </dependencies> |
361 | 363 | </dependencyManagement> |
362 | 364 |
|
|
0 commit comments