<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>libraries-5</artifactId> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-boot-2</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>../parent-boot-2</relativePath> </parent> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jool</artifactId> <version>${jool.version}</version> </dependency> <dependency> <groupId>au.com.dius</groupId> <artifactId>pact-jvm-provider-junit5_2.12</artifactId> <version>${pact.version}</version> </dependency> <dependency> <groupId>au.com.dius</groupId> <artifactId>pact-jvm-consumer-junit5_2.12</artifactId> <version>${pact.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/com.typesafe.akka/akka-actor --> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-actor_${scala.version}</artifactId> <version>${typesafe-akka.version}</version> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-testkit_${scala.version}</artifactId> <version>${typesafe-akka.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>one.util</groupId> <artifactId>streamex</artifactId> <version>${streamex.version}</version> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>${byte-buddy.version}</version> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> <version>${byte-buddy.version}</version> </dependency> <!--Java Docker API Client --> <dependency> <groupId>com.github.docker-java</groupId> <artifactId>docker-java</artifactId> <version>${docker.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> </exclusions> </dependency> <!--Java Docker API Client --> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>${caffeine.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>${findbugs.version}</version> <scope>test</scope> </dependency> <!-- Atlassian Fugue --> <dependency> <groupId>io.atlassian.fugue</groupId> <artifactId>fugue</artifactId> <version>${fugue.version}</version> </dependency> <dependency> <groupId>io.nats</groupId> <artifactId>jnats</artifactId> <version>${jnats.version}</version> </dependency> <dependency> <groupId>org.jctools</groupId> <artifactId>jctools-core</artifactId> <version>${jctools.version}</version> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh-core.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <pact.rootDir>target/mypacts</pact.rootDir> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> <properties> <pact.version>3.6.3</pact.version> <jool.version>0.9.12</jool.version> <spring.version>4.3.8.RELEASE</spring.version> <scala.version>2.12</scala.version> <typesafe-akka.version>2.5.11</typesafe-akka.version> <streamex.version>0.6.5</streamex.version> <docker.version>3.0.14</docker.version> <caffeine.version>2.5.5</caffeine.version> <findbugs.version>3.0.2</findbugs.version> <fugue.version>4.5.1</fugue.version> <jnats.version>1.0</jnats.version> <jctools.version>2.1.2</jctools.version> </properties> </project>