<?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>assertion-libraries</artifactId> <version>0.1-SNAPSHOT</version> <name>assertion-libraries</name> <parent> <groupId>com.baeldung</groupId> <artifactId>testing-modules</artifactId> <version>1.0.0-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <dependencies> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>${truth.version}</version> <exclusions> <!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine included in parent-modules. --> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.truth.extensions</groupId> <artifactId>truth-java8-extension</artifactId> <version>${truth.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-guava</artifactId> <version>${assertj-guava.version}</version> </dependency> <dependency> <groupId>org.javalite</groupId> <artifactId>javalite-common</artifactId> <version>${javalite.version}</version> </dependency> <dependency> <groupId>org.jgotesting</groupId> <artifactId>jgotesting</artifactId> <version>${jgotesting.version}</version> <scope>test</scope> <exclusions> <!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine included in parent-modules. --> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.assertj</groupId> <artifactId>assertj-assertions-generator-maven-plugin</artifactId> <version>${assertj-generator.version}</version> <configuration> <classes> <param>com.baeldung.testing.assertj.custom.Person</param> </classes> </configuration> </plugin> </plugins> </build> <properties> <truth.version>0.32</truth.version> <assertj-guava.version>3.1.0</assertj-guava.version> <assertj-generator.version>2.1.0</assertj-generator.version> <javalite.version>1.4.13</javalite.version> <jgotesting.version>0.12</jgotesting.version> </properties> </project>