Skip to content

Commit 2513617

Browse files
committed
update dependency
1 parent 8b02253 commit 2513617

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Amap MCP Server (高德地图 MCP 服务器)
22

3-
MCP Server for [Amap](https://lbs.amap.com/).
3+
MCP Server for [Amap](https://lbs.amap.com/)
44

5-
使用 Kotlin 开发的高德地图 MCP 服务器
5+
使用 Kotlin 开发的高德地图 MCP 服务器
66

77
## Tools available
88

@@ -18,8 +18,7 @@ MCP Server for [Amap](https://lbs.amap.com/).
1818

1919
## How to use
2020

21-
Go to [releases](https://github.com/JavaAIDev/amap-mcp-server/releases) page and download latest
22-
releases:
21+
Go to [releases](https://github.com/JavaAIDev/amap-mcp-server/releases) page and download latest releases:
2322

2423
- JAR file, requires Java 11 to run
2524
- Native executable files on Windows, macOS and Linux.

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import io.github.classgraph.ClassGraph
22

33
plugins {
4-
kotlin("jvm") version "2.2.0"
5-
kotlin("plugin.serialization") version "2.2.0"
4+
kotlin("jvm") version "2.2.20"
5+
kotlin("plugin.serialization") version "2.2.20"
66
id("com.github.johnrengelman.shadow") version "8.1.1"
77
id("org.graalvm.buildtools.native") version "0.10.6"
88
application
@@ -14,12 +14,12 @@ application {
1414

1515

1616
group = "com.javaaidev"
17-
version = "0.5.0"
17+
version = "0.6.0"
1818

19-
val mcpVersion = "0.6.0"
19+
val mcpVersion = "0.7.2"
2020
val slf4jVersion = "2.0.17"
2121
val logbackVersion = "1.5.18"
22-
val ktorVersion = "3.1.1"
22+
val ktorVersion = "3.3.1"
2323
val schemaKeneratorVersion = "2.1.4"
2424

2525
dependencies {

src/main/resources/logback.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<configuration>
2+
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
23

34
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
45
<file>amap-mcp-server.log</file>

src/test/kotlin/com/javaaidev/mcp/amap/McpClientTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class McpClientTest {
2424
try {
2525
withTimeout(1.minutes) {
2626
val process =
27-
ProcessBuilder("java", "-jar", "build/libs/amap-mcp-server-0.5.0-all.jar")
27+
ProcessBuilder("java", "-jar", "build/libs/amap-mcp-server-0.6.0-all.jar")
2828
.start()
2929

3030
val transport = StdioClientTransport(

0 commit comments

Comments
 (0)