This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.7.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit f906d679af1931da99cdc6bb5064aafe9b3732ac Author: James Netherton <[email protected]> AuthorDate: Fri Feb 4 14:55:31 2022 +0000 Fix groovy antora update script execution --- docs/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/pom.xml b/docs/pom.xml index bbb3ea3..e0b8a7f 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -45,6 +45,18 @@ <phase>validate</phase> <configuration> <source>file://${maven.multiModuleProjectDirectory}/tooling/scripts/update-antora-config.groovy</source> + <properties> + <maven.multiModuleProjectDirectory>${maven.multiModuleProjectDirectory}</maven.multiModuleProjectDirectory> + </properties> + </configuration> + </execution> + <execution> + <id>update-antora-yaml</id> + <goals> + <goal>execute</goal> + </goals> + <phase>validate</phase> + <configuration> <source>file://${maven.multiModuleProjectDirectory}/tooling/scripts/update-antora-yaml.groovy</source> <properties> <maven.multiModuleProjectDirectory>${maven.multiModuleProjectDirectory}</maven.multiModuleProjectDirectory>
