pom.xml 2.2 KB

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