Need to force the generation of the site before packaging, otherwise unable to generate a release.
This commit is contained in:
parent
161bdd2b35
commit
99bbf9ba3b
9
pom.xml
9
pom.xml
|
|
@ -282,6 +282,15 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>gen-site</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<xdocDirectory>${basedir}/src/xdocs</xdocDirectory>
|
||||
<validate>true</validate>
|
||||
|
|
|
|||
Loading…
Reference in New Issue