do not skip asciidoctor generation with eclipse-release profile (#10481)

Signed-off-by: Olivier Lamy <olamy@apache.org>
This commit is contained in:
Olivier Lamy 2023-09-07 07:17:27 +10:00 committed by GitHub
parent 896a301fc1
commit 56b4b6622b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
pom.xml
View File

@ -1978,6 +1978,18 @@
<profile>
<id>eclipse-release</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<!-- do not skip documentation generation during release -->
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>