pom.xml 2.5 KB

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