Skip to content

Commit 62a53cd

Browse files
author
Yuriy Bezsonov
committed
chore(deps): Migrate QA ai-agent to testcontainers 2.0.5
Testcontainers 2.0 renamed all modules with a 'testcontainers-' prefix, so the 1.x coordinates org.testcontainers:ollama and :junit-jupiter no longer resolve under the 2.0.5 BOM. Rename them to testcontainers-ollama and testcontainers-junit-jupiter and bump the BOM to 2.0.5. Test sources compile unchanged (OllamaContainer / @container / BindMode packages are stable in 2.0). Completes Dependabot #855.
1 parent c2ecb60 commit 62a53cd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • samples/quality-assurance/ai-agent

samples/quality-assurance/ai-agent/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<java.version>25</java.version>
3131
<spring-ai.version>2.0.0-M6</spring-ai.version>
3232
<mcp-client-security.version>0.0.3</mcp-client-security.version>
33-
<testcontainers.version>1.21.4</testcontainers.version>
33+
<testcontainers.version>2.0.5</testcontainers.version>
3434
</properties>
3535
<repositories>
3636
<repository>
@@ -103,12 +103,12 @@
103103
</dependency>
104104
<dependency>
105105
<groupId>org.testcontainers</groupId>
106-
<artifactId>ollama</artifactId>
106+
<artifactId>testcontainers-ollama</artifactId>
107107
<scope>test</scope>
108108
</dependency>
109109
<dependency>
110110
<groupId>org.testcontainers</groupId>
111-
<artifactId>junit-jupiter</artifactId>
111+
<artifactId>testcontainers-junit-jupiter</artifactId>
112112
<scope>test</scope>
113113
</dependency>
114114
<!-- Legacy Jackson (Boot 4 ships Jackson 3) for DeepEvalTest -->

0 commit comments

Comments
 (0)