mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:35:50 +00:00
Fix JBehave error reports
Certain report decoration resources were missing.
This commit is contained in:
parent
8514b3649f
commit
93a7142fb1
1 changed files with 38 additions and 0 deletions
|
@ -239,6 +239,44 @@
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
|
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>unpack-resources-core</id>
|
||||||
|
<phase>process-resources</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>unpack</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<outputDirectory>${project.build.directory}/jbehave/view</outputDirectory>
|
||||||
|
<overWriteReleases>true</overWriteReleases>
|
||||||
|
<overWriteSnapshots>true</overWriteSnapshots>
|
||||||
|
<excludes>**/*.class</excludes>
|
||||||
|
<artifactItems>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>org.jbehave</groupId>
|
||||||
|
<artifactId>jbehave-core</artifactId>
|
||||||
|
<version>${jbehave.core.version}</version>
|
||||||
|
<classifier>resources</classifier>
|
||||||
|
<type>zip</type>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>org.jbehave.site</groupId>
|
||||||
|
<artifactId>jbehave-site-resources</artifactId>
|
||||||
|
<version>${jbehave.site.version}</version>
|
||||||
|
<type>zip</type>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>org.jbehave</groupId>
|
||||||
|
<artifactId>jbehave-navigator</artifactId>
|
||||||
|
<version>${jbehave.core.version}</version>
|
||||||
|
</artifactItem>
|
||||||
|
</artifactItems>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>properties-maven-plugin</artifactId>
|
<artifactId>properties-maven-plugin</artifactId>
|
||||||
|
|
Loading…
Reference in a new issue