Add Reference Documentation infrastructure

This commit is contained in:
Eric Bottard
2017-08-06 12:14:28 +02:00
parent ff3153c419
commit 3fb368476f
8 changed files with 318 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>docs</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}/generated-docs</directory>
<outputDirectory>reference/htmlsingle</outputDirectory>
<includes>
<include>index.html</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/generated-docs</directory>
<outputDirectory>reference/pdf</outputDirectory>
<includes>
<include>index.pdf</include>
</includes>
</fileSet>
</fileSets>
</assembly>