From 6e2234ce6ee4492ba65dead0329e2a24fe1a75c3 Mon Sep 17 00:00:00 2001 From: kjaniak Date: Mon, 17 Feb 2020 23:04:25 +0100 Subject: Fix for not running tests Junit5 version lowered. 5.6.0 Junit5 has issues with maven-surefire-plugin Issue-ID: AAF-996 Signed-off-by: kjaniak Change-Id: I17489f106d42d4c0b66d8f68ef500fba2b68f261 --- pom.xml | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 72 insertions(+), 8 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 6c20bb45..38dfc9f3 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ 0.2 2.8.6 0.33.0 - 5.6.0 + 5.5.2 true @@ -74,14 +74,73 @@ + + org.springdoc + springdoc-openapi-maven-plugin + ${springdoc-openapi-maven-plugin.version} + + + integration-test + + generate + + + + + ${springdoc-openapi-maven-plugin.apiDocsUrl} + api-docs.json + ${project.build.directory} + + org.springframework.boot spring-boot-maven-plugin ${spring-boot-starter.version} + + + + repackage + + + + pre-integration-test + + start + + + + post-integration-test + + stop + + + + org.apache.maven.plugins maven-javadoc-plugin ${maven-javadoc-plugin.version} + + true + false + false + ${java.home}/bin/javadoc + + + + aggregate + site + + aggregate + + + + attach-javadoc + + jar + + + org.apache.maven.plugins @@ -175,7 +234,12 @@ - + + org.assertj + assertj-core + ${assertj-core.version} + test + org.junit.jupiter junit-jupiter-engine @@ -183,15 +247,15 @@ test - org.mockito - mockito-core - ${mockito-core.version} + org.junit.jupiter + junit-jupiter-api + ${junit.version} test - org.assertj - assertj-core - ${assertj-core.version} + org.mockito + mockito-core + ${mockito-core.version} test -- cgit 1.2.3-korg