2016-04-15 23:47:32 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-11-14 09:45:01 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-05-12 20:32:54 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-07-12 12:34:54 +05:30
|
|
|
<!-- NOT NEEDED - JSP <groupId>com.baeldung</groupId> -->
|
2017-11-12 11:16:46 +01:00
|
|
|
<artifactId>junit-5</artifactId>
|
2017-05-12 20:32:54 +02:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2017-11-12 11:16:46 +01:00
|
|
|
<name>junit-5</name>
|
2017-05-12 20:32:54 +02:00
|
|
|
<description>Intro to JUnit 5</description>
|
2018-04-26 18:07:47 +05:30
|
|
|
|
2017-05-09 22:37:43 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2018-04-26 18:07:47 +05:30
|
|
|
<relativePath>../../</relativePath>
|
2017-05-12 20:32:54 +02:00
|
|
|
</parent>
|
2016-04-15 23:47:32 +03:00
|
|
|
|
2017-05-12 20:32:54 +02:00
|
|
|
<dependencies>
|
2018-05-27 18:25:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-engine</artifactId>
|
|
|
|
<version>${junit.platform.version}</version>
|
|
|
|
</dependency>
|
2019-05-08 14:08:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
</dependency>
|
2019-01-19 05:38:13 +03:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
</dependency>
|
2019-05-08 14:08:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
</dependency>
|
2017-07-04 14:34:09 +02:00
|
|
|
<dependency>
|
2017-07-11 08:54:52 +03:00
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-runner</artifactId>
|
|
|
|
<version>${junit.platform.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-08 14:08:21 +02:00
|
|
|
<dependency>
|
2017-07-11 08:54:52 +03:00
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
<version>${junit.vintage.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-08 14:08:21 +02:00
|
|
|
<dependency>
|
2018-08-06 23:38:54 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-migrationsupport</artifactId>
|
|
|
|
<version>${junit.vintage.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-07-11 08:54:52 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<version>${log4j2.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>${h2.version}</version>
|
|
|
|
</dependency>
|
2017-11-04 13:15:54 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2018-08-07 14:42:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-11-02 11:54:23 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${mockito.junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2018-08-07 14:42:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-05-12 20:32:54 +02:00
|
|
|
</dependencies>
|
2018-04-26 18:07:47 +05:30
|
|
|
|
2018-07-12 12:34:54 +05:30
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>${exec-maven-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>com.baeldung.TestLauncher</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-05-06 02:00:00 +05:30
|
|
|
<properties>
|
2019-04-25 18:26:30 +04:30
|
|
|
<junit.jupiter.version>5.4.2</junit.jupiter.version>
|
2018-11-02 11:54:23 +05:30
|
|
|
<mockito.junit.jupiter.version>2.23.0</mockito.junit.jupiter.version>
|
2019-04-25 18:26:30 +04:30
|
|
|
<junit.platform.version>1.4.2</junit.platform.version>
|
|
|
|
<junit.vintage.version>5.4.2</junit.vintage.version>
|
2018-05-06 02:00:00 +05:30
|
|
|
<log4j2.version>2.8.2</log4j2.version>
|
2018-11-02 11:54:23 +05:30
|
|
|
<powermock.version>2.0.0-RC.1</powermock.version>
|
2019-05-13 00:38:41 +04:30
|
|
|
<maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
|
2018-07-12 12:34:54 +05:30
|
|
|
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
|
2018-05-06 02:00:00 +05:30
|
|
|
<spring.version>5.0.1.RELEASE</spring.version>
|
|
|
|
</properties>
|
2018-07-12 12:34:54 +05:30
|
|
|
|
2017-11-15 07:31:59 +01:00
|
|
|
</project>
|