<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">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.groiss</groupId>
	<artifactId>doxia-test</artifactId>
	<name>doxia-test</name>
	<version>1.0-SNAPSHOT</version>
	<build>
		<plugins>
			<plugin>
			        <groupId>org.apache.maven.doxia</groupId>
			        <artifactId>doxia-maven-plugin</artifactId>
			        <version>1.1</version>
			        <executions>
			          <execution>
			            <phase>compile</phase>
			            <goals>
			              <goal>render-books</goal>
			            </goals>
			          </execution>
			        </executions>
			        <configuration>
			          <books>
			            <book>
			              <directory>src/userguide/apt</directory>
			              <descriptor>src/userguide/userguide.xml</descriptor>
			              <formats>
			                <format>
			                  <id>latex</id>
			                </format>
			                <format>
			                  <id>xdoc</id>
			                </format>
			                <format>
			                  <id>pdf</id>
			                </format>
			                <format>
			                  <id>rtf</id>
			                </format>
			                <format>
						<id>xhtml</id>
			                </format>
			              </formats>
			            </book>
			          </books>
			        </configuration>
			      </plugin>
		</plugins>
	</build>
</project>
