Skip to content
Open
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
2 changes: 1 addition & 1 deletion agentflow4j-cli-agents/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<description>Bridge module: wrap spring-ai-community AgentModel as a agentflow4j Agent so external CLI agents (Claude Code, Codex, Gemini, ...) become nodes in an AgentGraph.</description>

<properties>
<agent-client.version>0.15.0</agent-client.version>
<agent-client.version>0.16.0</agent-client.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion agentflow4j-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<version>3.6.3</version>
<configuration>
<mainClass>${exec.mainClass}</mainClass>
</configuration>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<spring-boot.version>3.5.14</spring-boot.version>
<spring-ai.version>1.0.8</spring-ai.version>
<resilience4j.version>2.2.0</resilience4j.version>
<spring-boot.version>3.5.16</spring-boot.version>
<spring-ai.version>1.0.9</spring-ai.version>
<resilience4j.version>2.4.0</resilience4j.version>

<junit.version>5.10.2</junit.version>
<assertj.version>3.27.7</assertj.version>
Expand All @@ -50,7 +50,7 @@
<!-- Single security pin: Boot 3.5.14 ships tomcat 10.1.54, one patch
behind the fix (10.1.55) for several critical/high tomcat-embed
advisories. Same 10.1.x line — drop this once Boot pins 10.1.55+. -->
<tomcat.version>10.1.55</tomcat.version>
<tomcat.version>10.1.56</tomcat.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -149,17 +149,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.15.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.5.6</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<version>0.8.15</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
Loading