Vivek 8e1d751f68 BAEL-3040: @TestInstance annotation in JUnit 5 (#7247)
* BAEL-3040: @TestInstance annotation in JUnit 5

* BAEL-3040: @TestInstance annotation in JUnit 5 (renamed the tests)

* BAEL-3040: @TestInstance annotation in JUnit 5 (corrected the name and removed unnecessary code)

* BAEL-3040: @TestInstance annotation in JUnit 5 - renamed the files of test classes

* BAEL-3040: @TestInstance annotation in JUnit 5 (changed based on code review comments)

* BAEL-3040: @TestInstance annotation in JUnit 5 (added the class for Tweet Serializer using JUnit 4)

* BAEL-3040: @TestInstance annotation in JUnit 5 (Code review changes)

* BAEL-3040: @TestInstance annotation in JUnit 5 (missed a code review comment, made the changes for the same)

* BAEL-3040: @TestInstance annotation in JUnit 5 (Moved the code to the advanced JUnit 5 directory)

* BAEL-3040: Formatted pom.xml

* BAEL-3040: Removed the files from junit5 directory
2019-08-13 19:37:39 +01:00

53 lines
1.5 KiB
XML

<?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>junit-5-advanced</artifactId>
<version>1.0-SNAPSHOT</version>
<name>junit-5-advanced</name>
<description>Advanced JUnit 5 Topics</description>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<dependencies>
<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>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.vintage.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
<properties>
<junit-jupiter.version>5.4.2</junit-jupiter.version>
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
<junit.vintage.version>5.4.2</junit.vintage.version>
</properties>
</project>