This is an automated email from the ASF dual-hosted git repository.
hxd pushed a commit to branch site
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/site by this push:
new d14aaa8 add sitemap generator
d14aaa8 is described below
commit d14aaa8701accbbf189aa37d0eb96ccd9858ab72
Author: xiangdong huang <[email protected]>
AuthorDate: Mon Mar 30 15:54:16 2020 +0800
add sitemap generator
---
site/pom.xml | 27 ++++++++++++++++-----------
1 file changed, 16 insertions(+), 11 deletions(-)
diff --git a/site/pom.xml b/site/pom.xml
index 78844a8..bf058f6 100644
--- a/site/pom.xml
+++ b/site/pom.xml
@@ -316,17 +316,22 @@
<scmBranch>asf-site</scmBranch>
</configuration>
</plugin>
- <!-- <plugin>-->
- <!-- <groupId>org.simplify4u.plugins</groupId>-->
- <!--
<artifactId>sitemapxml-maven-plugin</artifactId>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <goals>-->
- <!-- <goal>gen</goal>-->
- <!-- </goals>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
+ <plugin>
+ <groupId>org.simplify4u.plugins</groupId>
+ <artifactId>sitemapxml-maven-plugin</artifactId>
+ <configuration>
+
<siteOutputDirectory>${project.build.directory}/vue-source/src/.vuepress/dist</siteOutputDirectory>
+ <maxDepth>5</maxDepth>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>gen</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>