hammant 2002/10/17 14:44:23
Modified: . build.xml
src/java/org/apache/avalon/cornerstone/blocks/masterstore/xml
XMLFilePersistentObjectRepository.java
Added: lib phoenix-metagenerate.jar qdox-1.0.jar
Removed: lib/xdoclet LICENSE.xdoclet.txt commons-logging.jar
log4j-core.jar xdoclet-20020825.jar
xjavadoc-20020825.jar
Log:
Xdoclet elimianted. Qdox installed.
Revision Changes Path
1.116 +13 -14 jakarta-avalon-cornerstone/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-cornerstone/build.xml,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- build.xml 26 Sep 2002 21:07:17 -0000 1.115
+++ build.xml 17 Oct 2002 21:44:22 -0000 1.116
@@ -154,7 +154,7 @@
</target>
<!-- Creates all the .jar file -->
- <target name="jars" depends="compile,xdoclet">
+ <target name="jars" depends="compile,metagenerate">
<mkdir dir="${build.lib}"/>
@@ -185,19 +185,18 @@
</jar>
</target>
- <target name="xdoclet" description="Generates the XML descriptors">
- <!-- The classpath for the task should contain the jars that contain the task
-->
- <taskdef name="phoenix-blocks"
- classname="org.apache.avalon.phoenix.tools.xdoclet.PhoenixXDoclet"
- classpathref="project.class.path"/>
-
- <phoenix-blocks
- destdir="${gen.dir}">
- <fileset dir="${java.dir}">
- <include name="**/*.java" />
- </fileset>
- <blockinfo/>
- </phoenix-blocks>
+ <target name="metagenerate" description="Generates the XML descriptors">
+
+ <taskdef name="generatemeta"
classname="org.apache.avalon.phoenix.tools.metagenerate.MetaGenerateQdoxTask">
+ <classpath refid="project.class.path" />
+ </taskdef>
+
+ <generatemeta dest="${gen.dir}">
+ <fileset dir="${java.dir}">
+ <include name="**/*.java"/>
+ </fileset>
+ </generatemeta>
+
</target>
<!-- Performs unit tests -->
1.5 +1 -1
jakarta-avalon-cornerstone/src/java/org/apache/avalon/cornerstone/blocks/masterstore/xml/XMLFilePersistentObjectRepository.java
Index: XMLFilePersistentObjectRepository.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-cornerstone/src/java/org/apache/avalon/cornerstone/blocks/masterstore/xml/XMLFilePersistentObjectRepository.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XMLFilePersistentObjectRepository.java 16 Mar 2002 00:18:33 -0000 1.4
+++ XMLFilePersistentObjectRepository.java 17 Oct 2002 21:44:22 -0000 1.5
@@ -23,7 +23,7 @@
* for all public subclasses of java.awt.Component in J2SE and the types of
* all of their properties, recursively. All other classes will be handled
* with the default persistence delegate which assumes the class follows
- * the beans conventions" (snipped from Bigparade)
+ * the beans conventions" (snipped from the BugParade)
*
* Basically, don't use this block for anything other than Swing component
* serialization. Sun will have to do a lot of work writing a
1.1 jakarta-avalon-cornerstone/lib/phoenix-metagenerate.jar
<<Binary file>>
1.1 jakarta-avalon-cornerstone/lib/qdox-1.0.jar
<<Binary file>>
--
To unsubscribe, e-mail: <mailto:avalon-cvs-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:avalon-cvs-help@;jakarta.apache.org>