Hi,

I am added a FAQ to an existing project that is using maven to generate its
documentation.  The xdocs all generate fine, but when I add a file with the
.fml extension nothing happens.  Any idea what I am doing wrong?

This is maven.xml I am using. Maven  1.0.2, maven-docbook-plugin 1.2

<project
 default="install"
 xmlns:util="jelly:util"
 xmlns:deploy="deploy"
 xmlns:j="jelly:core"
 xmlns:maven="jelly:maven"
 xmlns:ant="jelly:ant"
 xmlns:artifact="artifact">

 <goal name="clean">
   <attainGoal name="multiproject:clean"/>
   <delete dir="${maven.build.dir}"/>
 </goal>

 <preGoal name="site">
   <attainGoal name="docbook:transform"/>
 </preGoal>

 <goal name="install">
   <attainGoal name="multiproject:site"/>
   <tar tarfile="${maven.build.dir}/${maven.final.name}-site.tar"
basedir="${maven.docs.dest}"/>

   <artifact:install
         artifact="${maven.build.dir}/${maven.final.name}-site.tar"
         type="tar"
         project="${pom}"
   />
 </goal>

 <goal name="deploy">
     <attainGoal name="multiproject:site"/>
     <tar tarfile="${maven.build.dir}/${maven.final.name}-site.tar"
basedir="${maven.docs.dest}"/>
     <artifact:deploy
           artifact="${maven.build.dir}/${maven.final.name}-site.tar"
           type="tar"
           project="${pom}"
     />
 </goal>
</project>



Thanks in advance for the help,

The information contained in this electronic mail transmission is intended only 
for the use of the individual or entity named above and is privileged and 
confidential.  If you are not the intended recipient, please do not read, copy, 
use or disclose this communication to others.  Any dissemination, distribution 
or copying of this communication other than to the person or entity named above 
is strictly prohibited.  If you have received this communication in error, 
please immediately delete it from your system.

Reply via email to