Hi, It should be there among the old mails , but I wont mind attaching the 'clue' again .:-)
Attached here are * gen-blockinfo.xml (re-factored build script ) * Phoenix-XDoclet.jar(phoenix xdoclel ant tasks) * xdoclet.zip (src + build script to compile/test) (removed the following folders from the zip to keep it tiny: /lib - avalon-framework.jar - lo4j-core.jar -phoenix-client.jar - xdoclet.jar ) The templates are present in the /src/test/ folder inside the xdoclet.zip file Regards, Vinay --- Kevin Smith <[EMAIL PROTECTED]> wrote: > Risking the possibility of sounding clueless, where > is this stuff? I don't > see it attached to Vinay's messages, nor is it in > CVS..... > > --Kevin > On Friday 22 February 2002 07:09 am, Peter Donald > wrote: > > excellent! > > > > On Fri, 22 Feb 2002 22:35, Kevin Smith wrote: > > > I can take a look at this tonight. Friday night > is my customary "hack > > > on Avalon" night. > > > > > > On Thursday 21 February 2002 03:22 pm, you > wrote: > > > > On Thu, 21 Feb 2002 11:47, vinay nair wrote: > > > > > Have given a shot at this . > > > > > * gen-blockinfo.xml (re-factored build > script ) > > > > > * Phoenix-XDoclet.jar(phoenix xdoclel ant > tasks) > > > > > * xdoclet.zip (src + build script to > compile/test) > > > > > removed the jars from the above to reduce > the > > > > > redundancy since jars are already there with > > > > > cornerstone . > > > > > > > > > > Hope this helps . > > > > > > > > This is fantastic! > > > > > > > > I will try to get this integrated into the > build real soon now ... > > > > unless someone else wants to volunteer ??? > > > > > > > > > Maybe I can give the shot with > auto-generating > > > > > the manifest entries in a similar > fashion(XDoc').? > > > > > > > > That would be great aswell. > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > __________________________________________________ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com
<?xml version="1.0"?>
<!--
==============================================================================
Phoenix build file to generate BlockInfo from Javadoc tags
Authors:
Peter Donald <[EMAIL PROTECTED]>
Legal:
Copyright (c) 2002 The Apache Software Foundation. All Rights Reserved.
==============================================================================
-->
<project default="main" basedir=".">
<property name="src.base" value="src"/>
<property name="src.dir" value="${src.base}/java/"/>
<property name="lib.dir" value="lib"/>
<!-- directory where you place generated code -->
<property name="gen.dir" value="gen"/>
<property name="build.classes" value="build/classes"/>
<path id="project.class.path">
<pathelement path="${build.classes}" />
<pathelement path="${java.class.path}" />
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
</path>
<!-- Main target -->
<target name="main" depends="xdoclet" />
<!-- runs xdoclet if need be -->
<target name="xdoclet" unless="xdoclet.uptodate">
<taskdef name="phoenix-blocks" classname="org.apache.avalon.phoenix.tools.xdoclet.PhoenixXDoclet" classpathref="project.class.path"/>
<phoenix-blocks destDir="${gen.dir}" sourcePath="${src.dir}" classpathref="project.class.path" >
<fileset dir="${src.dir}">
<include name="org/apache/avalon/cornerstone/blocks/connection/*.java" />
</fileset>
<blockinfo templatePath="src/manifest/blockinfo.j" />
<manifest templatePath="src/manifest/manifest.j" manifestFile="{gen.dir}/../manifest.mf" />
</phoenix-blocks>
</target>
</project>
Phoenix-XDoclet.jar
Description: Phoenix-XDoclet.jar
xdoclet.zip
Description: xdoclet.zip
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
