Hi:

I recently discovered that the site:fsdeploy target has an incomplete filter when copying files from target/docs to the site deployment directory. The filter <include name="**/*.*"/> excludes files that do not have a period in the files. This means that the javadoc package-list file is not copied across, preventing the possibility for linking to the deploytment site javadocs. The solution is real simpler - must replace "**/*.*"" with "**/*".

A patch is included below.

Cheers, Steve.


cvs diff plugin.jelly (in directory F:\dev\jakarta-turbine-maven\src\plugins-build\site\)
Index: plugin.jelly
===================================================================
RCS file: /home/cvspublic/jakarta-turbine-maven/src/plugins-build/site/plugin.jelly,v
retrieving revision 1.6
diff -r1.6 plugin.jelly
163c163
< <include name="**/*.*"/>
---
> <include name="**/*"/>

--

Stephen J. McConnell
mailto:[EMAIL PROTECTED]
http://www.osm.net



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to