Skip to content

Commit a642ba8

Browse files
committed
Update embabel-agent version to 0.1.0
Add missing parameter to infoString
1 parent 2820628 commit a642ba8

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<description>Coding agent</description>
1717

1818
<properties>
19-
<embabel-agent.version>0.1.0-SNAPSHOT</embabel-agent.version>
19+
<embabel-agent.version>0.1.0</embabel-agent.version>
2020
<spring-ai.version>1.0.0-M8</spring-ai.version>
2121
<kotlin.version>2.1.10</kotlin.version>
2222
<kotlin.compiler.apiVersion>2.1</kotlin.compiler.apiVersion>
@@ -103,6 +103,13 @@
103103
</build>
104104

105105
<repositories>
106+
<repository>
107+
<id>embabel-releases</id>
108+
<url>https://repo.embabel.com/artifactory/libs-release</url>
109+
<snapshots>
110+
<enabled>true</enabled>
111+
</snapshots>
112+
</repository>
106113
<repository>
107114
<id>embabel-snapshots</id>
108115
<url>https://repo.embabel.com/artifactory/libs-snapshot</url>

src/main/kotlin/com/embabel/coding/agent/SpringCoder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class ResourceFactory : McpResourcePublisher {
151151
)
152152
}
153153

154-
override fun infoString(verbose: Boolean?): String {
154+
override fun infoString(verbose: Boolean?, indent: Int): String {
155155
return toString()
156156
}
157157
}

0 commit comments

Comments
 (0)