2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 10:53:43 -04:00
|
|
|
<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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<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>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.truth</groupId>
|
|
|
|
<artifactId>truth</artifactId>
|
|
|
|
<version>${truth.version}</version>
|
2021-10-29 00:07:04 -04:00
|
|
|
<exclusions>
|
2022-09-13 11:52:49 -04:00
|
|
|
<!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine -->
|
|
|
|
<!--included in parent-modules. -->
|
2021-10-29 00:07:04 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</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>
|
2021-10-29 00:07:04 -04:00
|
|
|
<exclusions>
|
2022-09-13 11:52:49 -04:00
|
|
|
<!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine -->
|
|
|
|
<!-- included in parent-modules. -->
|
2021-10-29 00:07:04 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</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>
|
2021-11-18 17:17:00 -05:00
|
|
|
<assertj-guava.version>3.4.0</assertj-guava.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<assertj-generator.version>2.1.0</assertj-generator.version>
|
|
|
|
<javalite.version>1.4.13</javalite.version>
|
|
|
|
<jgotesting.version>0.12</jgotesting.version>
|
|
|
|
</properties>
|
|
|
|
|
2021-05-17 10:53:43 -04:00
|
|
|
</project>
|