Files
spring-ws/docs.xml
Greg L. Turnquist cb189cf9ae Introduce changelog report.
Introduce a tool to collect and update the changelog.txt file. Ensure that updating this report is part of the pre-checks before doing a release.

Resolves #1295.
2022-11-21 09:34:01 -06:00

63 lines
2.2 KiB
XML

<?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 readme and other textfiles to the root of the distribution archive.
-->
<directory>src/dist</directory>
<includes>
<include>changelog.txt</include>
<include>license.txt</include>
<include>notice.txt</include>
<include>readme.txt</include>
</includes>
<outputDirectory />
</fileSet>
<fileSet>
<!--
Adds reference manual (html) to the distribution archive
under the 'docs/reference' directory see pom.xml 'maven-javadoc-plugin' declaration.
-->
<directory>target/site/reference/html</directory>
<outputDirectory>reference/html</outputDirectory>
</fileSet>
<fileSet>
<!--
Adds reference manual (pdf) to the distribution archive
under the 'docs/reference' directory see pom.xml 'maven-javadoc-plugin' declaration.
-->
<directory>target/site/reference/pdf</directory>
<includes>
<include>index.pdf</include>
</includes>
<outputDirectory>reference/pdf</outputDirectory>
</fileSet>
<fileSet>
<!--
Adds reference manual (epub) to the distribution archive
under the 'docs/reference' directory see pom.xml 'maven-javadoc-plugin' declaration.
-->
<directory>target/site/reference/epub</directory>
<includes>
<include>index.epub</include>
</includes>
<outputDirectory>reference/epub</outputDirectory>
</fileSet>
<fileSet>
<!--
Adds javadoc html to the distribution archive under the 'docs/javadoc'
directory see pom.xml 'maven-javadoc-plugin' declaration.
-->
<directory>target/site/apidocs</directory>
<outputDirectory>api</outputDirectory>
</fileSet>
</fileSets>
</assembly>