Ok.. So that would be qdox.

http://qdox.codehaus.org/download.html

d./

-----Original Message-----
From: Ferguson, Doug [mailto:[EMAIL PROTECTED]
Sent: Friday, December 12, 2003 6:03 PM
To: 'Avalon framework users'
Subject: RE: MERLIN - .xinfo creation using ant


What jars is this task dependent on?

I downloaded these 4 

        avalon-meta-api-1.1.jar   
        avalon-meta-plugin-1.1.jar  
        avalon-meta-tools-1.1.jar
        avalon-meta-impl-1.1.jar  
        avalon-meta-spi-1.1.jar

but I still get this error

BUILD FAILED
file:c:/dev/unagi/build.xml:88: taskdef class
org.apache.avalon.meta.info.ant.Me
taTask cannot be found

avalon-meta-plugin-1.1.jar  contains the acutal MetaTask.class but I am
thinking the classdef is getting thrown because of some other dependency.

d./

-----Original Message-----
From: Peter Courcoux [mailto:[EMAIL PROTECTED]
Sent: Friday, December 12, 2003 2:50 PM
To: Avalon framework users
Subject: Re: MERLIN - .xinfo creation using ant


Doug, 

Yes. There is an ant task.

Below is a copy of an ant build target adapt as required :-

  <!-- ================================================================ -->
  <!-- M E T A                                                          -->
  <!-- ================================================================ -->

  
  <target name="meta" description="Generates the XML descriptors">
    <mkdir dir="meta" />
    <taskdef name="meta"
classname="org.apache.avalon.meta.info.ant.MetaTask">
      <classpath refid="classpath" />
    </taskdef>
    <meta destDir="meta" format="xml">
      <fileset dir="src/java">
        <include name="**/*.java"/>
      </fileset>
    </meta>
  </target>


I hope that this is what you were looking for...


Regards,

Peter

On Fri, 2003-12-12 at 20:16, Ferguson, Doug wrote:
> Anybody out there using ant to create .xinfo files?
> 
> I thought about trying to port the maven code, but I thought maybe someone
> else already has.
> 
> d./
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
Peter Courcoux <[EMAIL PROTECTED]>

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

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

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

Reply via email to