This is an automated email from the ASF dual-hosted git repository. jinsongzhou pushed a commit to branch 0.7.x in repository https://gitbox.apache.org/repos/asf/amoro.git
commit 75fdff908e9cd5e5c2f055bfeea85237251adf2f Author: zhoujinsong <[email protected]> AuthorDate: Thu Jul 11 20:08:15 2024 +0800 Support to skip java doc plugin for trino module --- amoro-mixed-format/amoro-mixed-format-trino/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/amoro-mixed-format/amoro-mixed-format-trino/pom.xml b/amoro-mixed-format/amoro-mixed-format-trino/pom.xml index 1a079b73a..20ca33832 100644 --- a/amoro-mixed-format/amoro-mixed-format-trino/pom.xml +++ b/amoro-mixed-format/amoro-mixed-format-trino/pom.xml @@ -604,6 +604,14 @@ </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <skip>${skip-build-mixed-format-trino}</skip> + </configuration> + </plugin> + <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId>
