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:
parent
fba2615a82
commit
1772a154d7
|
|
@ -87,6 +87,9 @@
|
|||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue