Author: mcconnell Date: Wed Jun 9 04:02:01 2004 New Revision: 20934 Modified: avalon/trunk/runtime/meta/tools/src/java/org/apache/avalon/meta/info/ant/MetaTask.java Log: Update the MetaTask to function correctly under Ant 1.6 (seems to be some issue about nested filesets under ant 1.6.1).
Modified: avalon/trunk/runtime/meta/tools/src/java/org/apache/avalon/meta/info/ant/MetaTask.java ============================================================================== --- avalon/trunk/runtime/meta/tools/src/java/org/apache/avalon/meta/info/ant/MetaTask.java (original) +++ avalon/trunk/runtime/meta/tools/src/java/org/apache/avalon/meta/info/ant/MetaTask.java Wed Jun 9 04:02:01 2004 @@ -35,7 +35,7 @@ import org.apache.avalon.meta.info.builder.tags.ServiceTag; import org.apache.tools.ant.BuildException; - +import org.apache.tools.ant.types.FileSet; import com.thoughtworks.qdox.ant.AbstractQdoxTask; import com.thoughtworks.qdox.model.JavaClass; @@ -152,6 +152,11 @@ + "Recognized values include 'xinfo' and 'xtype'."; throw new BuildException( error ); } + } + + public void addConfigured( FileSet fileset ) + { + super.addFileset( fileset ); } /** --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]