|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>org.testcontainers</groupId> |
| 7 | + <artifactId>testcontainers-workshop-6</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <name>testcontainers-workshop-6</name> |
| 10 | + <description>testcontainers-workshop-6</description> |
| 11 | + <properties> |
| 12 | + <java.version>17</java.version> |
| 13 | + <testcontainers.version>1.19.8</testcontainers.version> |
| 14 | + </properties> |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>org.junit.jupiter</groupId> |
| 18 | + <artifactId>junit-jupiter</artifactId> |
| 19 | + <version>5.10.2</version> |
| 20 | + <scope>test</scope> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>org.testcontainers</groupId> |
| 24 | + <artifactId>ollama</artifactId> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>org.assertj</groupId> |
| 28 | + <artifactId>assertj-core</artifactId> |
| 29 | + <version>3.25.3</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>io.rest-assured</groupId> |
| 33 | + <artifactId>rest-assured</artifactId> |
| 34 | + <version>5.4.0</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>ch.qos.logback</groupId> |
| 38 | + <artifactId>logback-classic</artifactId> |
| 39 | + <version>1.3.14</version> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <dependencyManagement> |
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <groupId>org.testcontainers</groupId> |
| 47 | + <artifactId>testcontainers-bom</artifactId> |
| 48 | + <version>${testcontainers.version}</version> |
| 49 | + <scope>import</scope> |
| 50 | + <type>pom</type> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + </dependencyManagement> |
| 54 | + |
| 55 | + <build> |
| 56 | + <plugins> |
| 57 | + <plugin> |
| 58 | + <artifactId>maven-surefire-plugin</artifactId> |
| 59 | + <version>3.2.5</version> |
| 60 | + </plugin> |
| 61 | + </plugins> |
| 62 | + </build> |
| 63 | + |
| 64 | +</project> |
0 commit comments