2020-09-17 17:22:49 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>testing-libraries-2</artifactId>
|
|
|
|
<name>testing-libraries-2</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>testing-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2020-11-20 12:44:42 -05:00
|
|
|
<relativePath>../</relativePath>
|
2020-09-17 17:22:49 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2021-06-03 05:11:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-11-24 18:38:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2021-03-24 05:31:09 -04:00
|
|
|
<version>${assertj-core.version}</version>
|
2020-11-24 18:38:20 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-09-17 17:22:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
|
|
|
<artifactId>system-rules</artifactId>
|
|
|
|
<version>${system-rules.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
|
|
|
<artifactId>system-lambda</artifactId>
|
|
|
|
<version>${system-lambda.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-11-20 12:44:42 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>uk.org.webcompere</groupId>
|
|
|
|
<artifactId>system-stubs-jupiter</artifactId>
|
|
|
|
<version>${system-stubs.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>uk.org.webcompere</groupId>
|
|
|
|
<artifactId>system-stubs-junit4</artifactId>
|
|
|
|
<version>${system-stubs.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- System Stubs requires more up to date JUnit 5 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-09-17 17:22:49 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2021-05-17 10:53:43 -04:00
|
|
|
<finalName>testing-libraries-2</finalName>
|
2021-05-16 12:42:35 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!-- Plugins for JACOCO Coverage report -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>${jacoco.version}</version>
|
2021-06-03 05:11:38 -04:00
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/baeldung/**/ExcludedPOJO.class</exclude>
|
|
|
|
<exclude>com/baeldung/**/*DTO.*</exclude>
|
|
|
|
<exclude>**/config/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
2021-05-16 12:42:35 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>jacoco-initialize</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>jacoco-site</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2020-09-17 17:22:49 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2021-05-17 13:07:02 -04:00
|
|
|
<jacoco.version>0.8.6</jacoco.version>
|
2020-09-17 17:22:49 -04:00
|
|
|
<system-rules.version>1.19.0</system-rules.version>
|
|
|
|
<system-lambda.version>1.0.0</system-lambda.version>
|
2020-11-24 18:38:20 -05:00
|
|
|
<system-stubs.version>1.1.0</system-stubs.version>
|
2020-11-20 12:44:42 -05:00
|
|
|
<junit.jupiter.version>5.6.2</junit.jupiter.version>
|
2021-03-24 05:31:09 -04:00
|
|
|
<assertj-core.version>3.16.1</assertj-core.version>
|
2020-09-17 17:22:49 -04:00
|
|
|
</properties>
|
2021-08-02 14:57:15 -04:00
|
|
|
|
|
|
|
</project>
|