From cdc50e35b9ac16e07df5c31fdccf6768134d5e31 Mon Sep 17 00:00:00 2001 From: Christopher Bohn <bohn@unl.edu> Date: Thu, 29 Aug 2019 10:54:17 -0500 Subject: [PATCH] added surefire report plugin to pom, to allow test report generation --- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pom.xml b/pom.xml index 90a2983..8dfe12a 100644 --- a/pom.xml +++ b/pom.xml @@ -29,4 +29,13 @@ </plugins> </pluginManagement> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <version>2.19.1</version> + </plugin> + </plugins> + </reporting> </project> -- GitLab