diff --git a/LanguageServer/pom.xml b/LanguageServer/pom.xml index e2d813f..c6e8abe 100644 --- a/LanguageServer/pom.xml +++ b/LanguageServer/pom.xml @@ -27,6 +27,29 @@ <version>5.13.0-M2</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-reporting</artifactId> + <version>1.13.0-M2</version> + <scope>test</scope> + </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>3.5.3</version> + <configuration> + <properties> + <configurationParameters> + junit.platform.reporting.open.xml.enabled = true + junit.platform.reporting.output.dir = target/surefire-reports + </configurationParameters> + </properties> + </configuration> + </plugin> + </plugins> + </build> </project> \ No newline at end of file