Hello,
I have a problem with generation of a docbook with maven. I have a sample
xml file that is on src\docbook\resources and looks like this:
<book>
<bookinfo>
<date>1997-10-11</date>
<title>My first booklet</title>
<subtitle>it even has a subtitle</subtitle>
</bookinfo>
<toc></toc>
<!-- We are done with the preliminaries, now we can start with
the body of the document -->
<chapter>
<title>My first chapter</title>
<para>Here's a paragraph of text because it is stylistically
poor to start a section right after the chapter title.</para>
<sect1>
<title>A section in that first chapter</title>
<para>All I need is a single paragraph of text to make the
section valid.</para>
</sect1>
</chapter>
<appendix>
<title>Remaining details</title>
<para>Although this booklet is quite complete, here I will
mention some details I never got to.</para>
<sect1>
<title>Use of the word dude</title>
<para>Here's an example of how to say
<emphasis>dude</emphasis>: DUDE.</para>
</sect1>
</appendix>
</book>
When i run: mvn docbook:transform Maven performs transforming but the result
is not a xhtml file. The result that is placed in target/docbook is
olinkdb.xml and in target/docbook/resources is index.xml.
I'm I doing the things right?
--
The human knowledge belongs to the world.