Make sure that failsafe uses target/classes

This commit configures the failsafe plugin to use the classes directory
rather than the produced jar file as the latter can be a repackaged jar
by default.

Closes gh-11974
This commit is contained in:
Stephane Nicoll 2018-02-12 11:35:14 +01:00
parent fba2615a82
commit 1772a154d7
1 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,9 @@
</goals>
</execution>
</executions>
<configuration>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>