This allows developers to use good old HTML (and some WYSIWYG tool) to edit & maintain documentation and get it included in the same site documentation as all the xdoc stuff git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113056 13f79535-47bb-0310-9956-ffa450edef68
13 lines
331 B
XML
13 lines
331 B
XML
<project default="plugin:install">
|
|
|
|
<!-- copies unit testing stuff: don't know why we need this! -->
|
|
<postGoal name="test:compile">
|
|
<copy todir="target/test-classes">
|
|
<fileset dir="src/test">
|
|
<include name="**/*.html"/>
|
|
<include name="**/*.xml"/>
|
|
</fileset>
|
|
</copy>
|
|
</postGoal>
|
|
</project>
|