blob: 7aedd5727c46b126bef847e292fa528292a44af4 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001<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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
vinayakb0c860392012-10-06 18:47:20 +00003 <artifactId>hyracks-documentation</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +00004 <name>hyracks-documentation</name>
vinayakb0c860392012-10-06 18:47:20 +00005
6 <parent>
7 <groupId>edu.uci.ics.hyracks</groupId>
8 <artifactId>hyracks</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +00009 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000010 </parent>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.doxia</groupId>
16 <artifactId>doxia-maven-plugin</artifactId>
17 <version>1.1.3</version>
18 <executions>
19 <execution>
20 <phase>package</phase>
21 <goals>
22 <goal>render-books</goal>
23 </goals>
24 </execution>
25 </executions>
26 <configuration>
27 <books>
28 <book>
29 <directory>src/books/user-guide</directory>
30 <descriptor>src/books/user-guide/doxia-descriptor.xml</descriptor>
31 <formats>
32 <format>
33 <id>pdf</id>
34 </format>
35 <format>
36 <id>xhtml</id>
37 </format>
38 </formats>
39 </book>
40 </books>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46 </dependencies>
47</project>