GH-6 - Initial skeleton for project reference documentation.

This commit is contained in:
Oliver Drotbohm
2022-07-20 15:28:49 +02:00
parent 80cf808012
commit 0fdabdb9e6
13 changed files with 371 additions and 25 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>docs</id>
<formats>
<format>dir</format>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<!--
Adds reference manual (html and pdf) to the distribution archive under the 'docs/reference'.
-->
<directory>target/generated-docs</directory>
<outputDirectory>reference</outputDirectory>
</fileSet>
</fileSets>
</assembly>