2018-11-08 12:04:33 +01:00
|
|
|
<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>Doku</id>
|
|
|
|
|
<formats>
|
|
|
|
|
<format>zip</format>
|
|
|
|
|
</formats>
|
|
|
|
|
|
|
|
|
|
<fileSets>
|
|
|
|
|
<!-- die Jars und die dlls einpacken -->
|
|
|
|
|
<fileSet>
|
|
|
|
|
<directory>${project.build.directory}</directory>
|
|
|
|
|
<outputDirectory>/</outputDirectory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*dll</include>
|
|
|
|
|
<include>*.jar</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</fileSet>
|
|
|
|
|
|
|
|
|
|
<!-- Javadocs Verzeichnis einpacken -->
|
|
|
|
|
<fileSet>
|
|
|
|
|
<directory>${project.build.directory}/site/apidocs</directory>
|
|
|
|
|
<outputDirectory>apidocs/</outputDirectory>
|
|
|
|
|
</fileSet>
|
2022-01-14 18:15:39 +01:00
|
|
|
|
|
|
|
|
<!-- Alles in doc (die manuell erstellte Dokumentation -->
|
2018-11-08 12:04:33 +01:00
|
|
|
<fileSet>
|
2020-07-12 21:04:24 +02:00
|
|
|
<directory>${basedir}/doc</directory>
|
2018-11-08 12:04:33 +01:00
|
|
|
</fileSet>
|
2022-01-14 18:15:39 +01:00
|
|
|
<!-- Alles in docGen (die generierte Dokumentation) -->
|
|
|
|
|
<fileSet>
|
|
|
|
|
<directory>${basedir}/docGen</directory>
|
|
|
|
|
</fileSet>
|
|
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<fileSet>
|
2023-07-06 16:29:40 +02:00
|
|
|
<directory>${basedir}/src/main/resources/def/r1_9_0</directory>
|
2019-06-12 19:38:57 +02:00
|
|
|
<outputDirectory>/</outputDirectory>
|
2018-11-08 12:04:33 +01:00
|
|
|
</fileSet>
|
|
|
|
|
</fileSets>
|
|
|
|
|
|
|
|
|
|
</assembly>
|