pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <!--
  4. /**
  5. * Licensed to the Apache Software Foundation (ASF) under one
  6. * or more contributor license agreements. See the NOTICE file
  7. * distributed with this work for additional information
  8. * regarding copyright ownership. The ASF licenses this file
  9. * to you under the Apache License, Version 2.0 (the
  10. * "License"); you may not use this file except in compliance
  11. * with the License. You may obtain a copy of the License at
  12. *
  13. * http://www.apache.org/licenses/LICENSE-2.0
  14. *
  15. * Unless required by applicable law or agreed to in writing, software
  16. * distributed under the License is distributed on an "AS IS" BASIS,
  17. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. * See the License for the specific language governing permissions and
  19. * limitations under the License.
  20. */
  21. -->
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>org.apache.zookeeper</groupId>
  25. <artifactId>parent</artifactId>
  26. <version>3.10.0-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>zookeeper-docs</artifactId>
  29. <name>Apache ZooKeeper - Documentation</name>
  30. <description>Documentation</description>
  31. <packaging>pom</packaging>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>com.ruleoftech</groupId>
  36. <artifactId>markdown-page-generator-plugin</artifactId>
  37. <version>2.1.0</version>
  38. <executions>
  39. <execution>
  40. <phase>process-sources</phase>
  41. <goals>
  42. <goal>generate</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. <configuration>
  47. <headerHtmlFile>${project.basedir}/src/main/resources/markdown/html/header.html</headerHtmlFile>
  48. <footerHtmlFile>${project.basedir}/src/main/resources/markdown/html/footer.html</footerHtmlFile>
  49. <copyDirectories>images,skin</copyDirectories>
  50. <pegdownExtensions>TABLES,FENCED_CODE_BLOCKS</pegdownExtensions>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-deploy-plugin</artifactId>
  55. <configuration>
  56. <!-- this module isn't to be deployed to Maven Central -->
  57. <skip>true</skip>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>