2019-10-31 20:43:47 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2021-05-17 20:23:43 +05:30
<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 20:43:47 -05:00
<modelVersion > 4.0.0</modelVersion>
<artifactId > junit5-migration</artifactId>
<version > 1.0-SNAPSHOT</version>
<name > junit5-migration</name>
<description > JUnit 4 -> JUnit 5 migration</description>
<parent >
<groupId > com.baeldung</groupId>
2021-11-04 16:11:12 +05:30
<artifactId > testing-modules</artifactId>
2019-10-31 20:43:47 -05:00
<version > 1.0.0-SNAPSHOT</version>
</parent>
<dependencies >
<dependency >
<groupId > org.junit.platform</groupId>
<artifactId > junit-platform-engine</artifactId>
2021-03-29 15:22:10 +02:00
<version > ${junit-platform.version}</version>
2019-10-31 20:43:47 -05:00
</dependency>
<dependency >
<groupId > org.junit.platform</groupId>
2022-04-30 22:18:43 +05:30
<artifactId > junit-platform-suite</artifactId>
2021-03-29 15:22:10 +02:00
<version > ${junit-platform.version}</version>
2019-10-31 20:43:47 -05:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-migrationsupport</artifactId>
2021-10-29 09:37:04 +05:30
<version > ${junit-jupiter.version}</version>
2019-10-31 20:43:47 -05:00
<scope > test</scope>
</dependency>
</dependencies>
<build >
<resources >
<resource >
<directory > src/test/resources</directory>
<filtering > true</filtering>
</resource>
</resources>
</build>
2024-04-23 18:45:06 +02:00
<properties >
<junit-jupiter.version > 5.9.3</junit-jupiter.version> <!-- Latest compatible library. NamespacedHierarchicalStore was extracted starting from 5.10.x. So, fails to compile. -->
</properties>
2021-05-17 20:23:43 +05:30
</project>