Tim, 

Didn't spot any replies, so I have tried this, 
but I get:
Fatal Error [line 7, row 35]: The prefix "ant" for element "ant:copy" is not 
bound.
org.xml.sax.SAXParseException: The prefix "ant" for element "ant:copy" is not 
bound.
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at javax.xml.parsers.SAXParser.parse(Unknown Source)

Is this a good way to go?
How do I cure the above?

I am slightly suprised to see 

  <properties>
    <title>Maven</title>
    <author email="[EMAIL PROTECTED]">Jason van Zyl</author>
  </properties>

hardcoded into the maven xdocs, surely these should be coming from the pom?

any hints appreciated
timp


On Friday 04 July 2003 5:41 am, Tim Anderson wrote:
> Worked out a way to do it, but its not pretty, e.g:
>
>   <preGoal name="xdoc:transform">
>     <ant:mkdir dir="${maven.docs.src}"/>
>     <ant:copy todir="${maven.docs.src}">
>       <ant:fileset dir="${xdoc.dir}">
>         <ant:include name="**/*.xml"/>
>       </ant:fileset>
>       <ant:filterset>
>         <ant:filter token="VERSION" value="${pom.currentVersion}"/>
>       </ant:filterset>
>     </ant:copy>
>     <ant:copy todir="${maven.docs.src}">
>       <ant:fileset dir="${xdoc.dir}">
>         <ant:include name="**/*"/>
>         <ant:exclude name="**/*.xml"/>
>       </ant:fileset>
>     </ant:copy>
>   </preGoal>
>
> I can't see a simpler way - anyone got any better ideas?
>
> Thanks,
>
> Tim
>
> > -----Original Message-----
> > From: Tim Anderson [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, 3 July 2003 6:00 PM
> > To: Maven Users List
> > Subject: Replacing tags in xdocs
> >
> >
> > Hi,
> >     I would like to replace embedded tags within
> > my xdocs, prior to them being transformed to html.
> > Whats the recommended approach for doing this?
> > Its not clear to me which goal I need to hook in to.
> > Alternatively, does anyone have a reference to a
> > maven.xml which does this already?
> >
> > Thanks,
> >
> > Tim


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

Reply via email to