Have maven tests provide parameter metadata

This commit is contained in:
Juan Martín Sotuyo Dodero
2022-11-29 00:26:09 -03:00
parent 71ab585220
commit 3e42086e96

View File

@ -59,6 +59,23 @@
<groupId>org.jetbrains.kotlin</groupId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<execution>
<id>default-testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
<!-- Have test-compile produce parameter metadata for reflection tests -->
<configuration>
<parameters>true</parameters>
</configuration>
</execution>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>