|
65 | 65 | </build> |
66 | 66 |
|
67 | 67 | <dependencies> |
| 68 | + <!--MCP--> |
68 | 69 | <dependency> |
69 | 70 | <groupId>io.modelcontextprotocol.sdk</groupId> |
70 | 71 | <artifactId>mcp-spi</artifactId> |
71 | 72 | <version>${project.version}</version> |
72 | 73 | </dependency> |
73 | | - |
74 | 74 | <dependency> |
75 | 75 | <groupId>io.modelcontextprotocol.sdk</groupId> |
76 | 76 | <artifactId>mcp-schema-jackson</artifactId> |
77 | 77 | <version>${project.version}</version> |
78 | 78 | </dependency> |
79 | | - |
| 79 | + <!--Reactor--> |
80 | 80 | <dependency> |
81 | | - <groupId>org.slf4j</groupId> |
82 | | - <artifactId>slf4j-api</artifactId> |
83 | | - <version>${slf4j-api.version}</version> |
| 81 | + <groupId>org.reactivestreams</groupId> |
| 82 | + <artifactId>reactive-streams</artifactId> |
84 | 83 | </dependency> |
85 | | - |
86 | | - <dependency> |
87 | | - <groupId>com.fasterxml.jackson.core</groupId> |
88 | | - <artifactId>jackson-databind</artifactId> |
89 | | - <version>${jackson.version}</version> |
90 | | - </dependency> |
91 | | - |
92 | 84 | <dependency> |
93 | 85 | <groupId>io.projectreactor</groupId> |
94 | 86 | <artifactId>reactor-core</artifactId> |
95 | 87 | </dependency> |
96 | 88 |
|
97 | | - |
| 89 | + <!-- Used by the HttpServletSseServerTransport --> |
98 | 90 | <dependency> |
99 | | - <groupId>io.projectreactor.netty</groupId> |
100 | | - <artifactId>reactor-netty-http</artifactId> |
101 | | - <scope>test</scope> |
| 91 | + <groupId>jakarta.servlet</groupId> |
| 92 | + <artifactId>jakarta.servlet-api</artifactId> |
| 93 | + <version>${jakarta.servlet.version}</version> |
| 94 | + <scope>provided</scope> |
102 | 95 | </dependency> |
103 | | - |
| 96 | + <!--Logs--> |
| 97 | + <dependency> |
| 98 | + <groupId>org.slf4j</groupId> |
| 99 | + <artifactId>slf4j-api</artifactId> |
| 100 | + <version>${slf4j-api.version}</version> |
| 101 | + </dependency> |
| 102 | + <!--For test--> |
104 | 103 | <dependency> |
105 | 104 | <groupId>org.assertj</groupId> |
106 | 105 | <artifactId>assertj-core</artifactId> |
107 | 106 | <version>${assert4j.version}</version> |
108 | 107 | <scope>test</scope> |
109 | 108 | </dependency> |
| 109 | + <dependency> |
| 110 | + <groupId>org.testcontainers</groupId> |
| 111 | + <artifactId>testcontainers</artifactId> |
| 112 | + <version>${testcontainers.version}</version> |
| 113 | + <scope>test</scope> |
| 114 | + </dependency> |
110 | 115 | <dependency> |
111 | 116 | <groupId>org.junit.jupiter</groupId> |
112 | 117 | <artifactId>junit-jupiter-api</artifactId> |
|
125 | 130 | <version>${mockito.version}</version> |
126 | 131 | <scope>test</scope> |
127 | 132 | </dependency> |
128 | | - |
129 | | - <!-- Mockito cannot mock this class: class java.net.http.HttpClient. the bytebuddy helps. --> |
130 | | - <dependency> |
131 | | - <groupId>net.bytebuddy</groupId> |
132 | | - <artifactId>byte-buddy</artifactId> |
133 | | - <version>${byte-buddy.version}</version> |
134 | | - <scope>test</scope> |
135 | | - </dependency> |
136 | 133 | <dependency> |
137 | 134 | <groupId>io.projectreactor</groupId> |
138 | 135 | <artifactId>reactor-test</artifactId> |
139 | 136 | <scope>test</scope> |
140 | 137 | </dependency> |
141 | | - <dependency> |
142 | | - <groupId>org.testcontainers</groupId> |
143 | | - <artifactId>junit-jupiter</artifactId> |
144 | | - <version>${testcontainers.version}</version> |
145 | | - <scope>test</scope> |
146 | | - </dependency> |
147 | | - |
148 | 138 | <dependency> |
149 | 139 | <groupId>org.awaitility</groupId> |
150 | 140 | <artifactId>awaitility</artifactId> |
151 | 141 | <version>${awaitility.version}</version> |
152 | 142 | <scope>test</scope> |
153 | 143 | </dependency> |
154 | | - |
155 | | - <dependency> |
156 | | - <groupId>ch.qos.logback</groupId> |
157 | | - <artifactId>logback-classic</artifactId> |
158 | | - <version>${logback.version}</version> |
159 | | - <scope>test</scope> |
160 | | - </dependency> |
161 | | - |
162 | | - <dependency> |
163 | | - <groupId>net.javacrumbs.json-unit</groupId> |
164 | | - <artifactId>json-unit-assertj</artifactId> |
165 | | - <version>${json-unit-assertj.version}</version> |
166 | | - <scope>test</scope> |
167 | | - </dependency> |
168 | | - |
169 | | - |
170 | | - <!-- Used by the HttpServletSseServerTransport --> |
171 | | - <dependency> |
172 | | - <groupId>jakarta.servlet</groupId> |
173 | | - <artifactId>jakarta.servlet-api</artifactId> |
174 | | - <version>${jakarta.servlet.version}</version> |
175 | | - <scope>provided</scope> |
176 | | - </dependency> |
177 | | - |
178 | 144 | <!-- Tomcat dependencies for testing --> |
179 | 145 | <dependency> |
180 | 146 | <groupId>org.apache.tomcat.embed</groupId> |
181 | 147 | <artifactId>tomcat-embed-core</artifactId> |
182 | 148 | <version>${tomcat.version}</version> |
183 | 149 | <scope>test</scope> |
184 | 150 | </dependency> |
185 | | - <dependency> |
186 | | - <groupId>org.apache.tomcat.embed</groupId> |
187 | | - <artifactId>tomcat-embed-websocket</artifactId> |
188 | | - <version>${tomcat.version}</version> |
189 | | - <scope>test</scope> |
190 | | - </dependency> |
191 | | - |
192 | 151 | </dependencies> |
193 | 152 |
|
194 | 153 |
|
|
0 commit comments