You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by Stefan Bodewig <bo...@apache.org> on 2004/03/18 13:42:46 UTC

Gump/Avalon/Cocoon progress report

Hi all,

thanks to some incredible help by Niclas Hedhman we are quite close to
getting Gump far enough that it will actually start to build Cocoon
soon.

The only thing missing for Coccon is excalibur-xmlutil which doesn't
seem to compile against the latest Saxon 7 version (7.9):

    [javac] /javastuff/gump/avalon-excalibur/xmlutil/src/java/org/apache/excalibur/xml/xpath/Saxon7ProcessorImpl.java:82: cannot resolve symbol
    [javac] symbol  : method getItemType ()
    [javac] location: interface net.sf.saxon.om.Item
    [javac]             if (item.getItemType() == Type.BOOLEAN)
    [javac]                     ^
    [javac] /javastuff/gump/avalon-excalibur/xmlutil/src/java/org/apache/excalibur/xml/xpath/Saxon7ProcessorImpl.java:118: cannot resolve symbol
    [javac] symbol  : method getItemType ()
    [javac] location: interface net.sf.saxon.om.Item
    [javac]             if (item.getItemType() == Type.NUMBER)
    [javac]                     ^
    [javac] /javastuff/gump/avalon-excalibur/xmlutil/src/java/org/apache/excalibur/xml/xpath/Saxon7ProcessorImpl.java:191: cannot resolve symbol
    [javac] symbol  : method hasNext ()
    [javac] location: interface net.sf.saxon.om.SequenceIterator
    [javac]             while (iterator.hasNext())
    [javac]                            ^
    [javac] /javastuff/gump/avalon-excalibur/xmlutil/src/java/org/apache/excalibur/xml/xpath/Saxon7ProcessorImpl.java:244: make(java.lang.String,net.sf.saxon.expr.StaticContext,int,int) in net.sf.saxon.expr.ExpressionTool cannot be applied to (java.lang.String,org.apache.excalibur.xml.xpath.Saxon7ProcessorImpl.Saxon7Context)
    [javac]             Expression expression = ExpressionTool.make(
    [javac]                                                   ^
    [javac] 4 errors

If I simply ignore the xmlutil failure and try to compile Cocoon, I
get a lot of compilation errors.  I'm sending this mail to give you a
first heads-up and hope Gump will do so for me rather soon:

    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/Cocoon.java:40: cannot resolve symbol
    [javac] symbol  : class DefaultConfiguration 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfiguration;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/Cocoon.java:41: cannot resolve symbol
    [javac] symbol  : class SAXConfigurationHandler 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.SAXConfigurationHandler;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/Cocoon.java:42: package org.apache.avalon.framework.container does not exist
    [javac] import org.apache.avalon.framework.container.ContainerUtil;
    [javac]                                              ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/Cocoon.java:46: cannot resolve symbol
    [javac] symbol  : class DefaultContext 
    [javac] location: package context
    [javac] import org.apache.avalon.framework.context.DefaultContext;
    [javac]                                            ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/Cocoon.java:71: package org.apache.excalibur.xml.impl does not exist
    [javac] import org.apache.excalibur.xml.impl.XercesParser;
    [javac]                                      ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/Cocoon.java:72: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.SAXParser;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/environment/Source.java:20: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.XMLizable;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/environment/Source.java:39: cannot resolve symbol
    [javac] symbol  : class XMLizable 
    [javac] location: interface org.apache.cocoon.environment.Source
    [javac] public interface Source extends Recyclable, XMLizable {
    [javac]                                             ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/xml/XMLConsumer.java:29: package org.apache.excalibur.xml.sax does not exist
    [javac] public interface XMLConsumer extends org.apache.excalibur.xml.sax.XMLConsumer {
    [javac]                                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/bean/CocoonWrapper.java:36: cannot resolve symbol
    [javac] symbol  : class DefaultConfigurationBuilder 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/bean/CocoonWrapper.java:37: package org.apache.avalon.framework.container does not exist
    [javac] import org.apache.avalon.framework.container.ContainerUtil;
    [javac]                                              ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/bean/CocoonWrapper.java:38: cannot resolve symbol
    [javac] symbol  : class DefaultContext 
    [javac] location: package context
    [javac] import org.apache.avalon.framework.context.DefaultContext;
    [javac]                                            ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/bean/CocoonWrapper.java:39: cannot resolve symbol
    [javac] symbol  : class LogKitLogger 
    [javac] location: package logger
    [javac] import org.apache.avalon.framework.logger.LogKitLogger;
    [javac]                                           ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/acting/AbstractComplementaryConfigurableAction.java:20: cannot resolve symbol
    [javac] symbol  : class SAXConfigurationHandler 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.SAXConfigurationHandler;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/ComponentContext.java:25: cannot resolve symbol
    [javac] symbol  : class DefaultContext 
    [javac] location: package context
    [javac] import org.apache.avalon.framework.context.DefaultContext;
    [javac]                                            ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/ComponentContext.java:41: cannot resolve symbol
    [javac] symbol  : class DefaultContext 
    [javac] location: class org.apache.cocoon.components.ComponentContext
    [javac]     extends DefaultContext {
    [javac]             ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/ExtendedComponentSelector.java:24: cannot resolve symbol
    [javac] symbol  : class DefaultConfiguration 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfiguration;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:33: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaClassReader;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:34: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaClassReaderFactory;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:35: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaClassWriter;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:36: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaClassWriterFactory;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:37: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaCompiler;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:38: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaCompilerErrorHandler;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:39: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaSourceReader;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:40: package org.tempuri.javac does not exist
    [javac] import org.tempuri.javac.JavaSourceReaderFactory;
    [javac]                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:41: package org.tempuri.javacImpl.eclipse does not exist
    [javac] import org.tempuri.javacImpl.eclipse.JavaCompilerImpl;
    [javac]                                      ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:50: cannot resolve symbol
    [javac] symbol  : class JavaCompiler 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader
    [javac]     JavaCompiler compiler;
    [javac]     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:175: cannot resolve symbol
    [javac] symbol  : class JavaSourceReaderFactory 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.SourceReaderFactory
    [javac]     class SourceReaderFactory implements JavaSourceReaderFactory {
    [javac]                                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:176: cannot resolve symbol
    [javac] symbol  : class JavaSourceReader 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.SourceReaderFactory
    [javac]         public JavaSourceReader 
    [javac]                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:221: cannot resolve symbol
    [javac] symbol  : class JavaClassReaderFactory 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.ClassReaderFactory
    [javac]         implements JavaClassReaderFactory {
    [javac]                    ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:223: cannot resolve symbol
    [javac] symbol  : class JavaClassReader 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.ClassReaderFactory
    [javac]         public JavaClassReader 
    [javac]                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:257: cannot resolve symbol
    [javac] symbol  : class JavaClassWriterFactory 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.ClassWriterFactory
    [javac] 	    implements JavaClassWriterFactory {
    [javac]                        ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:259: cannot resolve symbol
    [javac] symbol  : class JavaClassWriter 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.ClassWriterFactory
    [javac] 	    public JavaClassWriter 
    [javac]                    ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/CompilingClassLoader.java:290: cannot resolve symbol
    [javac] symbol  : class JavaCompilerErrorHandler 
    [javac] location: class org.apache.cocoon.components.flow.javascript.fom.CompilingClassLoader.ErrorHandler
    [javac] 	class ErrorHandler implements JavaCompilerErrorHandler {
    [javac]                                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/FOM_Cocoon.java:30: cannot resolve symbol
    [javac] symbol  : class WrapperComponentManager 
    [javac] location: package component
    [javac] import org.apache.avalon.framework.component.WrapperComponentManager;
    [javac]                                              ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/XMLMetaModule.java:36: package org.apache.excalibur.xml.xpath does not exist
    [javac] import org.apache.excalibur.xml.xpath.XPathProcessor;
    [javac]                                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/XMLMetaModule.java:102: cannot resolve symbol
    [javac] symbol  : class XPathProcessor 
    [javac] location: class org.apache.cocoon.components.modules.input.XMLMetaModule
    [javac]     protected XPathProcessor xpathProcessor;
    [javac]               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/resolver/DefaultResolver.java:18: package org.apache.excalibur.xml does not exist
    [javac] import org.apache.excalibur.xml.DefaultEntityResolver;
    [javac]                                 ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/resolver/DefaultResolver.java:37: cannot resolve symbol
    [javac] symbol  : class DefaultEntityResolver 
    [javac] location: class org.apache.cocoon.components.resolver.DefaultResolver
    [javac]   extends DefaultEntityResolver {
    [javac]           ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/xml/XMLFragment.java:35: package org.apache.excalibur.xml.sax does not exist
    [javac] public interface XMLFragment extends org.apache.excalibur.xml.sax.XMLizable {
    [javac]                                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/source/SourceUtil.java:48: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.SAXParser;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/source/SourceUtil.java:49: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.XMLizable;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/source/SourceUtil.java:50: package org.apache.excalibur.xmlizer does not exist
    [javac] import org.apache.excalibur.xmlizer.XMLizer;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/source/impl/SitemapSource.java:47: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.XMLizable;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/source/impl/SitemapSource.java:61: cannot resolve symbol
    [javac] symbol  : class XMLizable 
    [javac] location: class org.apache.cocoon.components.source.impl.SitemapSource
    [javac] implements Source, XMLizable {
    [javac]                    ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/treeprocessor/TreeProcessor.java:35: cannot resolve symbol
    [javac] symbol  : class SAXConfigurationHandler 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.SAXConfigurationHandler;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/treeprocessor/DefaultTreeBuilder.java:32: cannot resolve symbol
    [javac] symbol  : class NamespacedSAXConfigurationHandler 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.NamespacedSAXConfigurationHandler;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/treeprocessor/sitemap/ComponentsSelector.java:28: cannot resolve symbol
    [javac] symbol  : class DefaultConfiguration 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfiguration;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java:31: cannot resolve symbol
    [javac] symbol  : class DefaultConfiguration 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfiguration;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/xpointer/XPointerContext.java:20: package org.apache.excalibur.xml.xpath does not exist
    [javac] import org.apache.excalibur.xml.xpath.PrefixResolver;
    [javac]                                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/xpointer/XPointerContext.java:33: cannot resolve symbol
    [javac] symbol  : class PrefixResolver 
    [javac] location: class org.apache.cocoon.components.xpointer.XPointerContext
    [javac] public class XPointerContext implements PrefixResolver {
    [javac]                                         ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/components/xpointer/XPointerPart.java:22: package org.apache.excalibur.xml.xpath does not exist
    [javac] import org.apache.excalibur.xml.xpath.XPathProcessor;
    [javac]                                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:56: package org.apache.commons.jexl does not exist
    [javac] import org.apache.commons.jexl.ExpressionFactory;
    [javac]                                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:57: package org.apache.commons.jexl does not exist
    [javac] import org.apache.commons.jexl.JexlContext;
    [javac]                                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:58: package org.apache.commons.jexl.util does not exist
    [javac] import org.apache.commons.jexl.util.Introspector;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:59: package org.apache.commons.jexl.util.introspection does not exist
    [javac] import org.apache.commons.jexl.util.introspection.Info;
    [javac]                                                   ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:60: package org.apache.commons.jexl.util.introspection does not exist
    [javac] import org.apache.commons.jexl.util.introspection.UberspectImpl;
    [javac]                                                   ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:61: package org.apache.commons.jexl.util.introspection does not exist
    [javac] import org.apache.commons.jexl.util.introspection.VelMethod;
    [javac]                                                   ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:62: package org.apache.commons.jexl.util.introspection does not exist
    [javac] import org.apache.commons.jexl.util.introspection.VelPropertyGet;
    [javac]                                                   ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:63: package org.apache.commons.jexl.util.introspection does not exist
    [javac] import org.apache.commons.jexl.util.introspection.VelPropertySet;
    [javac]                                                   ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:75: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.XMLizable;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1041: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     static private Object getValue(Expression expr, JexlContext jexlContext,
    [javac]                                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1076: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     static private Object getValue(Expression expr, JexlContext jexlContext, JXPathContext jxpathContext) throws Exception {
    [javac]                                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1080: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     static private int getIntValue(Expression expr, JexlContext jexlContext,
    [javac]                                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1089: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     static private Number getNumberValue(Expression expr, JexlContext jexlContext,
    [javac]                                                           ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1101: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     static private String getStringValue(Expression expr, JexlContext jexlContext,
    [javac]                                                           ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1113: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     static private Boolean getBooleanValue(Expression expr, JexlContext jexlContext,
    [javac]                                                             ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1124: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     private Object getNode(Expression expr, JexlContext jexlContext,
    [javac]                                             ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1153: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     private Object getNode(Expression expr, JexlContext jexlContext, JXPathContext jxpathContext) throws Exception {
    [javac]                                             ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:750: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.MyJexlContext
    [javac]         extends HashMap implements JexlContext {
    [javac]                                    ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:2930: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator
    [javac]     private void characters(JexlContext jexlContext,
    [javac]                             ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:430: cannot resolve symbol
    [javac] symbol  : class UberspectImpl 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]     static class JSIntrospector extends UberspectImpl {
    [javac]                                         ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:691: cannot resolve symbol
    [javac] symbol  : class Info 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]         public Iterator getIterator(Object obj, Info i)
    [javac]                                                 ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:722: cannot resolve symbol
    [javac] symbol  : class Info 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]                                    Object[] args, Info i)
    [javac]                                                   ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:721: cannot resolve symbol
    [javac] symbol  : class VelMethod 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]         public VelMethod getMethod(Object obj, String methodName,
    [javac]                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:731: cannot resolve symbol
    [javac] symbol  : class Info 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]                                              Info i)
    [javac]                                              ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:730: cannot resolve symbol
    [javac] symbol  : class VelPropertyGet 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]         public VelPropertyGet getPropertyGet(Object obj, String identifier,
    [javac]                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:740: cannot resolve symbol
    [javac] symbol  : class Info 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]                                              Object arg, Info i)
    [javac]                                                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:739: cannot resolve symbol
    [javac] symbol  : class VelPropertySet 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector
    [javac]         public VelPropertySet getPropertySet(Object obj, String identifier,
    [javac]                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:432: cannot resolve symbol
    [javac] symbol  : class VelMethod 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector.JSMethod
    [javac]         static class JSMethod implements VelMethod {
    [javac]                                          ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:504: cannot resolve symbol
    [javac] symbol  : class VelPropertyGet 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector.JSPropertyGet
    [javac]         static class JSPropertyGet implements VelPropertyGet {
    [javac]                                               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:561: cannot resolve symbol
    [javac] symbol  : class VelPropertySet 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.JSIntrospector.JSPropertySet
    [javac]         static class JSPropertySet implements VelPropertySet {
    [javac]                                               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:1889: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.StartFormatNumber
    [javac]         String format(JexlContext jexl, JXPathContext jxp)
    [javac]                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java:2118: cannot resolve symbol
    [javac] symbol  : class JexlContext 
    [javac] location: class org.apache.cocoon.generation.JXTemplateGenerator.StartFormatDate
    [javac]         String format(JexlContext jexl, JXPathContext jxp)
    [javac]                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/RequestGenerator.java:34: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.SAXParser;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/SessionAttributeGenerator.java:26: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.XMLizable;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/StreamGenerator.java:25: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.SAXParser;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:40: package org.apache.excalibur.xml.dom does not exist
    [javac] import org.apache.excalibur.xml.dom.DOMParser;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:41: package org.apache.excalibur.xml.xpath does not exist
    [javac] import org.apache.excalibur.xml.xpath.PrefixResolver;
    [javac]                                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:42: package org.apache.excalibur.xml.xpath does not exist
    [javac] import org.apache.excalibur.xml.xpath.XPathProcessor;
    [javac]                                       ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:128: cannot resolve symbol
    [javac] symbol  : class DOMParser 
    [javac] location: class org.apache.cocoon.generation.XPathDirectoryGenerator
    [javac]     protected DOMParser parser = null;
    [javac]               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:134: cannot resolve symbol
    [javac] symbol  : class PrefixResolver 
    [javac] location: class org.apache.cocoon.generation.XPathDirectoryGenerator
    [javac]     protected PrefixResolver prefixResolver = null;
    [javac]               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:143: cannot resolve symbol
    [javac] symbol  : class XPathProcessor 
    [javac] location: class org.apache.cocoon.generation.XPathDirectoryGenerator
    [javac]     protected XPathProcessor processor = null;
    [javac]               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/generation/XPathDirectoryGenerator.java:322: cannot resolve symbol
    [javac] symbol  : class PrefixResolver 
    [javac] location: class org.apache.cocoon.generation.XPathDirectoryGenerator.MappingInfo
    [javac]     implements PrefixResolver {
    [javac]                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/xml/SaxBuffer.java:23: package org.apache.excalibur.xml.sax does not exist
    [javac] import org.apache.excalibur.xml.sax.XMLizable;
    [javac]                                     ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/xml/SaxBuffer.java:48: cannot resolve symbol
    [javac] symbol  : class XMLizable 
    [javac] location: class org.apache.cocoon.xml.SaxBuffer
    [javac] public class SaxBuffer implements XMLConsumer, XMLizable, Recyclable, Serializable {
    [javac]                                                ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/i18n/XMLResourceBundleFactory.java:28: cannot resolve symbol
    [javac] symbol  : class DefaultComponentSelector 
    [javac] location: package component
    [javac] import org.apache.avalon.framework.component.DefaultComponentSelector;
    [javac]                                              ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/i18n/XMLResourceBundleFactory.java:54: cannot resolve symbol
    [javac] symbol  : class DefaultComponentSelector 
    [javac] location: class org.apache.cocoon.i18n.XMLResourceBundleFactory
    [javac] public class XMLResourceBundleFactory extends DefaultComponentSelector
    [javac]                                               ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/matching/MountTableMatcher.java:24: cannot resolve symbol
    [javac] symbol  : class DefaultConfigurationBuilder 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;
    [javac]                                                  ^
    [javac] /javastuff/gump/cocoon-2.1/src/java/org/apache/cocoon/servlet/CocoonServlet.java:52: cannot resolve symbol
    [javac] symbol  : class DefaultConfigurationBuilder 
    [javac] location: package configuration
    [javac] import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;
    [javac]                                                  ^
    [javac] 100 errors

Cheers

        Stefan

Re: Gump/Avalon/Cocoon progress report

Posted by Stefan Bodewig <bo...@apache.org>.
On Fri, 19 Mar 2004, Vadim Gritsenko <va...@reverycodes.com> wrote:

> I (kind of) fixed these compilation problems (locally, on my HD),
> but can't compile xmlutil because of:

[missing xml-commons-resolver]

> (I tried to compile with maven). What do I miss - why this does not
> compile?

You miss xml-resolver which can be found in the XML commons project.
No idea why it won't work with Maven (I used Gump to compile
excalibur-xmlutil).

Stefan

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Niclas Hedhman <ni...@hedhman.org>.
On Friday 19 March 2004 21:33, Vadim Gritsenko wrote:
> (I tried to compile with maven). What do I miss - why this does not
> compile?


Error in the project.xml.
It was depending on "xml-commons-resolver", but it is available in the Maven 
repo as "xml-resolver".

Fixed in the CVS.

Niclas
-- 
+---------//-------------------+
|   http://www.bali.ac         |
|  http://niclas.hedhman.org   |
+------//----------------------+

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Stefan Bodewig <bo...@apache.org>.
On Fri, 19 Mar 2004, Vadim Gritsenko <va...@reverycodes.com> wrote:

> I (kind of) fixed these compilation problems (locally, on my HD),
> but can't compile xmlutil because of:

[missing xml-commons-resolver]

> (I tried to compile with maven). What do I miss - why this does not
> compile?

You miss xml-resolver which can be found in the XML commons project.
No idea why it won't work with Maven (I used Gump to compile
excalibur-xmlutil).

Stefan

Re: Gump/Avalon/Cocoon progress report

Posted by Vadim Gritsenko <va...@reverycodes.com>.
Niclas Hedhman wrote:

>On Friday 19 March 2004 21:33, Vadim Gritsenko wrote:
>
>Depended on "xml-commons-resolver" but is called "xml-resolver" in Maven repo.
>
>Fixed in CVS.
>  
>

Thanks, Niclas.


Stefan,

I fixed this issue with Saxon - compiles ok and tests are passing 
through, against Saxon 7.9


Vadim


Re: Gump/Avalon/Cocoon progress report

Posted by Vadim Gritsenko <va...@reverycodes.com>.
Niclas Hedhman wrote:

>On Friday 19 March 2004 21:33, Vadim Gritsenko wrote:
>
>Depended on "xml-commons-resolver" but is called "xml-resolver" in Maven repo.
>
>Fixed in CVS.
>  
>

Thanks, Niclas.


Stefan,

I fixed this issue with Saxon - compiles ok and tests are passing 
through, against Saxon 7.9


Vadim


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Vadim Gritsenko <va...@reverycodes.com>.
Niclas Hedhman wrote:

>On Friday 19 March 2004 21:33, Vadim Gritsenko wrote:
>
>Depended on "xml-commons-resolver" but is called "xml-resolver" in Maven repo.
>
>Fixed in CVS.
>  
>

Thanks, Niclas.


Stefan,

I fixed this issue with Saxon - compiles ok and tests are passing 
through, against Saxon 7.9


Vadim


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Niclas Hedhman <ni...@hedhman.org>.
On Friday 19 March 2004 21:33, Vadim Gritsenko wrote:

Depended on "xml-commons-resolver" but is called "xml-resolver" in Maven repo.

Fixed in CVS.

Niclas
-- 
+---------//-------------------+
|   http://www.bali.ac         |
|  http://niclas.hedhman.org   |
+------//----------------------+

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Niclas Hedhman <ni...@hedhman.org>.
On Friday 19 March 2004 21:33, Vadim Gritsenko wrote:

Depended on "xml-commons-resolver" but is called "xml-resolver" in Maven repo.

Fixed in CVS.

Niclas
-- 
+---------//-------------------+
|   http://www.bali.ac         |
|  http://niclas.hedhman.org   |
+------//----------------------+

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Stefan Bodewig <bo...@apache.org>.
On Fri, 19 Mar 2004, Vadim Gritsenko <va...@reverycodes.com> wrote:

> I (kind of) fixed these compilation problems (locally, on my HD),
> but can't compile xmlutil because of:

[missing xml-commons-resolver]

> (I tried to compile with maven). What do I miss - why this does not
> compile?

You miss xml-resolver which can be found in the XML commons project.
No idea why it won't work with Maven (I used Gump to compile
excalibur-xmlutil).

Stefan

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Vadim Gritsenko <va...@reverycodes.com>.
Stefan Bodewig wrote:

>The only thing missing for Coccon is excalibur-xmlutil which doesn't
>seem to compile against the latest Saxon 7 version (7.9):
>  
>

I (kind of) fixed these compilation problems (locally, on my HD), but 
can't compile xmlutil because of:

    [javac] 
C:\Work\avalon-excalibur\xmlutil\src\java\org\apache\excalibur\xml\DefaultEntityResolver.java:33: 
package org.apache.xml.resolver does not exist
    [javac] import org.apache.xml.resolver.CatalogManager;
(and similar, 6 errors total)


(I tried to compile with maven). What do I miss - why this does not compile?

Vadim


Re: Gump/Avalon/Cocoon progress report

Posted by Stefan Bodewig <bo...@apache.org>.
On Thu, 18 Mar 2004, Niclas Hedhman <ni...@hedhman.org> wrote:
> On Thursday 18 March 2004 20:42, Stefan Bodewig wrote:

>> org.apache.avalon.framework.configuration.DefaultConfiguration;
> 
> This should be solved by a 
> <depend project="avalon-framework"  id="combined" />

which has to be done in Cocoon's Gump descriptor.  I hope a Cocoon
committer is listening ;-)

> I need to get "xml-commons-resolver" (Maven can't find it in
> ibiblio.org repo) and see what the issue is.

<http://www.apache.org/dist/java-repository/xml-resolver/jars/> looks
good (not that I'd know too much about the repository there).

Stefan

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Stefano Mazzocchi <st...@apache.org>.
Niclas Hedhman wrote:

> I think Cocoon should also stick there Gump Descriptor into Gump, so we can 
> all help out.

Long story, Niclas. Our build system is based on that descriptor file as 
well.

We plan to change that as soon as the new block system is in place.

-- 
Stefano.


Re: Gump/Avalon/Cocoon progress report

Posted by Niclas Hedhman <ni...@hedhman.org>.
On Thursday 18 March 2004 20:42, Stefan Bodewig wrote:
> Hi all,
>
> thanks to some incredible help by Niclas Hedhman we are quite close to
> getting Gump far enough that it will actually start to build Cocoon
> soon.

You have done a lot more than I have :o)  Thumbs up for Gump Support !!

> The only thing missing for Coccon is excalibur-xmlutil which doesn't
> seem to compile against the latest Saxon 7 version (7.9):

I'll check this. Our Maven build has a 7.7 dependency, and it would be strange 
if Saxon is not compatible...

> If I simply ignore the xmlutil failure and try to compile Cocoon, I
> get a lot of compilation errors.  I'm sending this mail to give you a
> first heads-up and hope Gump will do so for me rather soon:

> org.apache.avalon.framework.configuration.DefaultConfiguration; [javac]    

This should be solved by a 
<depend project="avalon-framework"  id="combined" />


> org.apache.excalibur.xml.impl.XercesParser;
> org.apache.excalibur.xml.sax.SAXParser;
> org.apache.excalibur.xml.sax.XMLizable;

These are all in Excalibur XMLUtil, which probably doesn't build properly yet. 
I need to get "xml-commons-resolver" (Maven can't find it in ibiblio.org 
repo) and see what the issue is.


That is what I can see from here.

I think Cocoon should also stick there Gump Descriptor into Gump, so we can 
all help out.


Niclas

-- 
+---------//-------------------+
|   http://www.bali.ac         |
|  http://niclas.hedhman.org   |
+------//----------------------+

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Vadim Gritsenko <va...@reverycodes.com>.
Stefan Bodewig wrote:

>The only thing missing for Coccon is excalibur-xmlutil which doesn't
>seem to compile against the latest Saxon 7 version (7.9):
>  
>

I (kind of) fixed these compilation problems (locally, on my HD), but 
can't compile xmlutil because of:

    [javac] 
C:\Work\avalon-excalibur\xmlutil\src\java\org\apache\excalibur\xml\DefaultEntityResolver.java:33: 
package org.apache.xml.resolver does not exist
    [javac] import org.apache.xml.resolver.CatalogManager;
(and similar, 6 errors total)


(I tried to compile with maven). What do I miss - why this does not compile?

Vadim


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Niclas Hedhman <ni...@hedhman.org>.
On Thursday 18 March 2004 21:42, Stephen McConnell wrote:

> The xmlutil package maven.xml is showing 7.7 as the build version.
> Perhaps there are some breaking changes between 7.7 and 7.9?

I am about to check and possibly fix this.

I think I updated to 7.7 recently, and I am somewhat surprised something 
breaks, as that is not like Saxon at all.

Niclas
-- 
+---------//-------------------+
|   http://www.bali.ac         |
|  http://niclas.hedhman.org   |
+------//----------------------+

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Stephen McConnell <mc...@apache.org>.
Stefan Bodewig wrote:

> Hi all,
> 
> thanks to some incredible help by Niclas Hedhman we are quite close to
> getting Gump far enough that it will actually start to build Cocoon
> soon.
> 
> The only thing missing for Coccon is excalibur-xmlutil which doesn't
> seem to compile against the latest Saxon 7 version (7.9):
> 
>     [javac] /javastuff/gump/avalon-excalibur/xmlutil/src/java/org/apache/excalibur/xml/xpath/Saxon7ProcessorImpl.java:82: cannot resolve symbol
>     [javac] symbol  : method getItemType ()
>     [javac] location: interface net.sf.saxon.om.Item
>     [javac]             if (item.getItemType() == Type.BOOLEAN)
>     [javac]                     ^

The xmlutil package maven.xml is showing 7.7 as the build version. 
Perhaps there are some breaking changes between 7.7 and 7.9?

> If I simply ignore the xmlutil failure and try to compile Cocoon, I
> get a lot of compilation errors.  I'm sending this mail to give you a
> first heads-up and hope Gump will do so for me rather soon:


<snip>

Aside from xmlutil - you seem to be ok on avalon-framework-api class but 
missing avalon-framework-impl.

Cheers, Stephen.

-- 

|------------------------------------------------|
| Magic by Merlin                                |
| Production by Avalon                           |
|                                                |
| http://avalon.apache.org/merlin                |
| http://dpml.net/merlin/distributions/latest    |
|------------------------------------------------|

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org


Re: Gump/Avalon/Cocoon progress report

Posted by Vadim Gritsenko <va...@reverycodes.com>.
Stefan Bodewig wrote:

>The only thing missing for Coccon is excalibur-xmlutil which doesn't
>seem to compile against the latest Saxon 7 version (7.9):
>  
>

I (kind of) fixed these compilation problems (locally, on my HD), but 
can't compile xmlutil because of:

    [javac] 
C:\Work\avalon-excalibur\xmlutil\src\java\org\apache\excalibur\xml\DefaultEntityResolver.java:33: 
package org.apache.xml.resolver does not exist
    [javac] import org.apache.xml.resolver.CatalogManager;
(and similar, 6 errors total)


(I tried to compile with maven). What do I miss - why this does not compile?

Vadim


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org