o Applying patch by RBD.

when you run dist:build, the binary build has the whole contents of the
base directory copied over where the docs should be. this patch fixes this
problem.

- robert


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112755 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jvanzyl
2003-01-26 22:34:03 +00:00
parent 02a7a56b86
commit d7b7f49735

2
dist/plugin.jelly vendored
View File

@@ -56,7 +56,7 @@
<j:set var="docsDest"
value="${pom.getPluginContext('maven-xdoc-plugin').getVariable('maven.docs.dest')}"/>
<copy todir="${maven.dist.bin.assembly.dir}/docs">
<fileset dir="${maven.docs.dest}">
<fileset dir="${docsDest}">
<include name="**"/>
</fileset>
</copy>