* JAVA-26760: Updated and standardized the junit-jupiter-engine library * JAVA-26760: Updated and standardized the mockito-junit-jupiter library * fix mockito-junit-jupiter properties * fix maven-custom-plugin/usage-example properties * Fix quarkus-funqy * JAVA-26760: Fix NamespacedHierarchicalStore error in junit
21 lines
811 B
XML
21 lines
811 B
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>data-jpa-application</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung.spring-boot-config-jpa-error</groupId>
|
|
<artifactId>spring-boot-config-jpa-error</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</project> |