Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions mcp-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
<dependencyManagement>
<dependencies>
<!-- Core MCP -->
<dependency>
<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-spec-schema</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-core</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion mcp-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@
<artifactId>mcp-json</artifactId>
<version>0.17.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-spec-schema</artifactId>
<version>0.17.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
39 changes: 39 additions & 0 deletions mcp-spec-schema/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-parent</artifactId>
<version>0.17.0-SNAPSHOT</version>
</parent>

<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-spec-schema</artifactId>
<version>0.17.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-json</artifactId>
<version>0.17.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* The Model Context Protocol (MCP) specification package.
*/
package io.modelcontextprotocol.spec;
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

package io.modelcontextprotocol.util;

import java.util.Collection;
import org.jspecify.annotations.Nullable;

import reactor.util.annotation.Nullable;
import java.util.Collection;

/**
* Assertion utility class that assists in validating arguments.
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
<module>mcp-bom</module>
<module>mcp</module>
<module>mcp-core</module>
<module>mcp-spec-schema</module>
<module>mcp-json-jackson2</module>
<module>mcp-json</module>
<module>mcp-spring/mcp-spring-webflux</module>
Expand Down
Loading